full site update

This commit is contained in:
2025-07-24 18:46:24 +02:00
parent bfe2b90d8d
commit 37a6e0ab31
6912 changed files with 540482 additions and 361712 deletions

25
node_modules/unicode-trie/swap.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
const isBigEndian = (new Uint8Array(new Uint32Array([0x12345678]).buffer)[0] === 0x12);
const swap = (b, n, m) => {
let i = b[n];
b[n] = b[m];
b[m] = i;
};
const swap32 = array => {
const len = array.length;
for (let i = 0; i < len; i += 4) {
swap(array, i, i + 3);
swap(array, i + 1, i + 2);
}
};
const swap32LE = array => {
if (isBigEndian) {
swap32(array);
}
};
module.exports = {
swap32LE: swap32LE
};