This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs-blog-newsletter/cronjob/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js

43 lines
1.9 KiB
JavaScript
Raw Normal View History

2024-05-26 22:54:55 +02:00
export const fromUtf8 = (input) => {
const bytes = [];
for (let i = 0, len = input.length; i < len; i++) {
const value = input.charCodeAt(i);
if (value < 0x80) {
bytes.push(value);
}
else if (value < 0x800) {
bytes.push((value >> 6) | 0b11000000, (value & 0b111111) | 0b10000000);
}
else if (i + 1 < input.length && (value & 0xfc00) === 0xd800 && (input.charCodeAt(i + 1) & 0xfc00) === 0xdc00) {
const surrogatePair = 0x10000 + ((value & 0b1111111111) << 10) + (input.charCodeAt(++i) & 0b1111111111);
bytes.push((surrogatePair >> 18) | 0b11110000, ((surrogatePair >> 12) & 0b111111) | 0b10000000, ((surrogatePair >> 6) & 0b111111) | 0b10000000, (surrogatePair & 0b111111) | 0b10000000);
}
else {
bytes.push((value >> 12) | 0b11100000, ((value >> 6) & 0b111111) | 0b10000000, (value & 0b111111) | 0b10000000);
}
}
return Uint8Array.from(bytes);
};
export const toUtf8 = (input) => {
let decoded = "";
for (let i = 0, len = input.length; i < len; i++) {
const byte = input[i];
if (byte < 0x80) {
decoded += String.fromCharCode(byte);
}
else if (0b11000000 <= byte && byte < 0b11100000) {
const nextByte = input[++i];
decoded += String.fromCharCode(((byte & 0b11111) << 6) | (nextByte & 0b111111));
}
else if (0b11110000 <= byte && byte < 0b101101101) {
const surrogatePair = [byte, input[++i], input[++i], input[++i]];
const encoded = "%" + surrogatePair.map((byteValue) => byteValue.toString(16)).join("%");
decoded += decodeURIComponent(encoded);
}
else {
decoded += String.fromCharCode(((byte & 0b1111) << 12) | ((input[++i] & 0b111111) << 6) | (input[++i] & 0b111111));
}
}
return decoded;
};