mirror of
https://git.proxmox.com/git/mirror_novnc
synced 2025-04-29 12:15:32 +00:00

Try to be more consistent in how we capitalize things. Both the "Title Case" and "Sentence case" styles are popular, so either would work. Google and Mozilla both prefer "Sentence case", so let's follow them.
16 lines
326 B
JavaScript
16 lines
326 B
JavaScript
/*
|
|
* noVNC: HTML5 VNC client
|
|
* Copyright (C) 2020 The noVNC authors
|
|
* Licensed under MPL 2.0 (see LICENSE.txt)
|
|
*
|
|
* See README.md for usage and integration instructions.
|
|
*/
|
|
|
|
export function toUnsigned32bit(toConvert) {
|
|
return toConvert >>> 0;
|
|
}
|
|
|
|
export function toSigned32bit(toConvert) {
|
|
return toConvert | 0;
|
|
}
|