]> git.proxmox.com Git - mirror_novnc.git/blob - core/util/strings.js
d04ac00e952588c38308887d06d4aaefd3387cbb
[mirror_novnc.git] / core / util / strings.js
1 /*
2 * noVNC: HTML5 VNC client
3 * Copyright (C) 2012 Joel Martin
4 * Licensed under MPL 2.0 (see LICENSE.txt)
5 *
6 * See README.md for usage and integration instructions.
7 */
8
9 /*
10 * Decode from UTF-8
11 */
12 export function decodeUTF8 (utf8string) {
13 "use strict";
14 return decodeURIComponent(escape(utf8string));
15 }