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.
13 lines
310 B
13 lines
310 B
"use strict"
|
|
|
|
var hasOwn = typeof Object.hasOwn === "undefined" ? Function.call.bind(Object.prototype.hasOwnProperty) : Object.hasOwn
|
|
|
|
function mergeModules (target, module) {
|
|
for (var key in module) {
|
|
if (hasOwn(module, key)) {
|
|
target[key] = module[key]
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = mergeModules
|
|
|