File size: 416 Bytes
e7c00ab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | "use strict";
if (typeof Object.assign !== "function") {
Object.assign = function (target, ...args) {
if (!target) {
throw TypeError("Cannot convert undefined or null to object");
}
for (const source of args) {
if (source) {
Object.keys(source).forEach((key) => (target[key] = source[key]));
}
}
return target;
};
}
|