You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
793 B
23 lines
793 B
2 years ago
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.defaults = defaults;
|
||
|
function defaults(target, ...sources) {
|
||
|
for (let source of sources){
|
||
|
for(let k in source){
|
||
|
var ref;
|
||
|
if (!(target === null || target === void 0 ? void 0 : (ref = target.hasOwnProperty) === null || ref === void 0 ? void 0 : ref.call(target, k))) {
|
||
|
target[k] = source[k];
|
||
|
}
|
||
|
}
|
||
|
for (let k1 of Object.getOwnPropertySymbols(source)){
|
||
|
var ref1;
|
||
|
if (!(target === null || target === void 0 ? void 0 : (ref1 = target.hasOwnProperty) === null || ref1 === void 0 ? void 0 : ref1.call(target, k1))) {
|
||
|
target[k1] = source[k1];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return target;
|
||
|
}
|