download
raw
382 Bytes
export function rotl32(x, n) {
return ((x << n) | (x >>> (32 - n))) >>> 0;
}
export function rotr32(x, n) {
return ((x << (32 - n)) | (x >>> n)) >>> 0;
}
export function rotr64(x, n) {
return ((x << BigInt(64 - n)) | (x >> BigInt(n))) & 0xffffffffffffffffn;
}
export function rotl64(x, n) {
return ((x << BigInt(n)) | (x >> BigInt(64 - n))) & 0xffffffffffffffffn;
}

Xet Storage Details

Size:
382 Bytes
·
Xet hash:
3d3eae131841c09d269ce7754d0f4e79275e9ec5f53ec2c9bd32315483a0e92d

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