master
js 15 lines 326 Bytes
Raw
1 /*
2 * noVNC: HTML5 VNC client
3 * Copyright (C) 2020 The noVNC Authors
4 * Licensed under MPL 2.0 (see LICENSE.txt)
5 *
6 * See README.md for usage and integration instructions.
7 */
8
9 export function toUnsigned32bit(toConvert) {
10 return toConvert >>> 0;
11 }
12
13 export function toSigned32bit(toConvert) {
14 return toConvert | 0;
15 }