int.js 326 B

123456789101112131415
  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. export function toUnsigned32bit(toConvert) {
  9. return toConvert >>> 0;
  10. }
  11. export function toSigned32bit(toConvert) {
  12. return toConvert | 0;
  13. }