download
raw
382 Bytes
function decodeText(array) {
if (typeof TextDecoder !== "undefined") {
return new TextDecoder().decode(array);
}
let s = "";
for (let i = 0, il = array.length; i < il; i++) {
s += String.fromCharCode(array[i]);
}
try {
return decodeURIComponent(escape(s));
} catch (e) {
return s;
}
}
export {
decodeText
};
//# sourceMappingURL=LoaderUtils.js.map

Xet Storage Details

Size:
382 Bytes
·
Xet hash:
e48e9401fc9c5f5926990b2468bf8adb68264dc01dd15dec19b8c8cfd3e85c58

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.