Subtheme of barrio
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.
 
 
 
 

19 lines
505 B

import { root } from './root';
export function assignImpl(target, ...sources) {
const len = sources.length;
for (let i = 0; i < len; i++) {
const source = sources[i];
for (let k in source) {
if (source.hasOwnProperty(k)) {
target[k] = source[k];
}
}
}
return target;
}
;
export function getAssign(root) {
return root.Object.assign || assignImpl;
}
export const assign = getAssign(root);
//# sourceMappingURL=assign.js.map