Buckets:

imerfanrajabee's picture
download
raw
406 Bytes
export function applyMixins(derivedCtor: any, baseCtors: any[]) {
for (let i = 0, len = baseCtors.length; i < len; i++) {
const baseCtor = baseCtors[i];
const propertyKeys = Object.getOwnPropertyNames(baseCtor.prototype);
for (let j = 0, len2 = propertyKeys.length; j < len2; j++) {
const name = propertyKeys[j];
derivedCtor.prototype[name] = baseCtor.prototype[name];
}
}
}

Xet Storage Details

Size:
406 Bytes
·
Xet hash:
acb3c711a714748f6768cf50ea683df2e0c7d78bdcf702cd3cefdfdf1f9e1e21

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