SPB Git forge

spb/admin-ka

Public
41commits 1branches 0releases
172.9 MBsize
maindefault branch
19 days agolast push
JavaScript 65.5% Python 17.8% CSS 13% HTML 3.7%
468 B · 21 lines javascript
Raw Blame History
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}