@qvant/qui-max
Version:
A Vue 3 Design system for Web.
15 lines (14 loc) • 442 B
JavaScript
function assign(target, dirtyObject) {
if (target == null) {
throw new TypeError("assign requires that input parameter not be null or undefined");
}
dirtyObject = dirtyObject || {};
for (var property in dirtyObject) {
if (Object.prototype.hasOwnProperty.call(dirtyObject, property)) {
target[property] = dirtyObject[property];
}
}
return target;
}
export { assign as default };
//# sourceMappingURL=index.js.map