mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-17 07:43:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
11
node_modules/rxjs/_esm2015/util/applyMixins.js
generated
vendored
Normal file
11
node_modules/rxjs/_esm2015/util/applyMixins.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
export function applyMixins(derivedCtor, baseCtors) {
|
||||
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];
|
||||
}
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=applyMixins.js.map
|
||||
Reference in New Issue
Block a user