Buckets:

imerfanrajabee's picture
download
raw
302 Bytes
/**
* Removes an item from an array, mutating it.
* @param arr The array to remove the item from
* @param item The item to remove
*/
export function arrRemove<T>(arr: T[] | undefined | null, item: T) {
if (arr) {
const index = arr.indexOf(item);
0 <= index && arr.splice(index, 1);
}
}

Xet Storage Details

Size:
302 Bytes
·
Xet hash:
97bf9de87f3963c67eddc74f0d0c8b2cf6467fd95fd13e9efa43f1bdbcf956ca

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