download
raw
213 Bytes
export function constantTimeEqual(a, b) {
if (a.length !== b.length) {
return false;
}
let c = 0;
for (let i = 0; i < a.length; i++) {
c |= a[i] ^ b[i];
}
return c === 0;
}

Xet Storage Details

Size:
213 Bytes
·
Xet hash:
47e1de525d6db706a7b33893a20739f9b1b9dcd4e95bf6ada4735bffcd5cd32d

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