JavaScript 65.5%
Python 17.8%
CSS 13%
HTML 3.7%
1/*2 * noVNC: HTML5 VNC client3 * Copyright (C) 2020 The noVNC authors4 * Licensed under MPL 2.0 (see LICENSE.txt)5 *6 * See README.md for usage and integration instructions.7 */89export function toUnsigned32bit(toConvert) {10 return toConvert >>> 0;11}1213export function toSigned32bit(toConvert) {14 return toConvert | 0;15}16