strings.js 301 B

1234567891011121314
  1. /*
  2. * noVNC: HTML5 VNC client
  3. * Copyright (C) 2018 The noVNC Authors
  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. return decodeURIComponent(escape(utf8string));
  13. }