Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50655 views
1
var has = Object.prototype.hasOwnProperty;
2
module.exports = Object.assign || function assign(target, source) {
3
for (var key in source) {
4
if (has.call(source, key)) {
5
target[key] = source[key];
6
}
7
}
8
return target;
9
};
10
11