From 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 23 Feb 2023 19:34:56 +0100 Subject: Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated) --- .../node_modules/whatwg-url/dist/encoding.js | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 includes/external/school/node_modules/whatwg-url/dist/encoding.js (limited to 'includes/external/school/node_modules/whatwg-url/dist/encoding.js') diff --git a/includes/external/school/node_modules/whatwg-url/dist/encoding.js b/includes/external/school/node_modules/whatwg-url/dist/encoding.js new file mode 100644 index 0000000..2bf6fa3 --- /dev/null +++ b/includes/external/school/node_modules/whatwg-url/dist/encoding.js @@ -0,0 +1,26 @@ +"use strict"; +let { TextEncoder, TextDecoder } = require("util"); +// Handle browserify's lack of support (https://github.com/browserify/node-util/issues/46), which +// is important for the live viewer: +if (!TextEncoder) { + TextEncoder = global.TextEncoder; +} +if (!TextDecoder) { + TextDecoder = global.TextDecoder; +} + +const utf8Encoder = new TextEncoder(); +const utf8Decoder = new TextDecoder("utf-8", { ignoreBOM: true }); + +function utf8Encode(string) { + return utf8Encoder.encode(string); +} + +function utf8DecodeWithoutBOM(bytes) { + return utf8Decoder.decode(bytes); +} + +module.exports = { + utf8Encode, + utf8DecodeWithoutBOM +}; -- cgit