EdgeAIG's picture
download
raw
354 Bytes
/**
* @since 4.0.0
*/
/** @internal */
export function set<K extends PropertyKey, A>(self: Record<K, A>, key: K, value: A): Record<K, A> {
if (key === "__proto__") {
Object.defineProperty(self, key, {
value,
writable: true,
enumerable: true,
configurable: true
})
} else {
self[key] = value
}
return self
}

Xet Storage Details

Size:
354 Bytes
·
Xet hash:
f7e8abacbce685580222e747eac551913395ef92d20828f98e7b74da65d4d219

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