main
Raw Download raw file
 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
 9export function toUnsigned32bit(toConvert) {
10    return toConvert >>> 0;
11}
12
13export function toSigned32bit(toConvert) {
14    return toConvert | 0;
15}