Opal-Estate-Pro/node_modules/rxjs/_esm2015/util/assign.js
2019-09-13 11:27:52 +07:00

19 lines
505 B
JavaScript
Executable File

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