1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-02-13 11:31:50 +00:00
MeshCentral/public/novnc/core/util/strings.js
2020-06-06 18:55:47 -07:00

14 lines
301 B
JavaScript

/*
* noVNC: HTML5 VNC client
* Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
*/
/*
* Decode from UTF-8
*/
export function decodeUTF8(utf8string) {
return decodeURIComponent(escape(utf8string));
}