strings.js 315 B

123456789101112131415
  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. * Decode from UTF-8
  10. */
  11. export function decodeUTF8 (utf8string) {
  12. "use strict";
  13. return decodeURIComponent(escape(utf8string));
  14. };