UNPKG

svelte-vnc

Version:

noVNC component for svelte 4 and 5 without using iframe. Supports multiple instances of itself enabling the user to visualize multiple vnc streams in the same page

16 lines (13 loc) 326 B
/* * 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; }