Neuste Version

This commit is contained in:
MarcWieland
2026-06-19 16:28:08 +02:00
parent c25260fb5e
commit 13789fab1d
623 changed files with 65768 additions and 63 deletions
+13
View File
@@ -0,0 +1,13 @@
"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