JavaScript 65.5%
Python 17.8%
CSS 13%
HTML 3.7%
1"use strict";23Object.defineProperty(exports, "__esModule", {4 value: true5});6exports.toSigned32bit = toSigned32bit;7exports.toUnsigned32bit = toUnsigned32bit;8/*9 * noVNC: HTML5 VNC client10 * Copyright (C) 2020 The noVNC authors11 * Licensed under MPL 2.0 (see LICENSE.txt)12 *13 * See README.md for usage and integration instructions.14 */1516function toUnsigned32bit(toConvert) {17 return toConvert >>> 0;18}19function toSigned32bit(toConvert) {20 return toConvert | 0;21}