2 * noVNC: HTML5 VNC client
3 * Copyright (C) 2020 The noVNC Authors
4 * Licensed under MPL 2.0 (see LICENSE.txt)
6 * See README.md for usage and integration instructions.
9export function toUnsigned32bit(toConvert) {
10 return toConvert >>> 0;
13export function toSigned32bit(toConvert) {