download
raw
237 Bytes
export function decodeASCII(encoded) {
for (let i = 0; i < encoded.byteLength; i++) {
if (encoded[i] > 0x7f) {
throw new TypeError("Invalid ASCII");
}
}
return new TextDecoder().decode(encoded);
}

Xet Storage Details

Size:
237 Bytes
·
Xet hash:
ded34fee5e757b21bf24578b0f1b999e3435d311c095c3acfc3368f48131b411

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