1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-04 05:10:05 +02:00

initial commit

This commit is contained in:
s2
2018-05-18 10:48:24 +02:00
commit f96e61fd63
1674 changed files with 277039 additions and 0 deletions

25
app/node_modules/xtend/mutable.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
var Keys = require("object-keys")
var hasKeys = require("./has-keys")
module.exports = extend
function extend(target) {
var sources = [].slice.call(arguments, 1)
for (var i = 0; i < sources.length; i++) {
var source = sources[i]
if (!hasKeys(source)) {
continue
}
var keys = Keys(source)
for (var j = 0; j < keys.length; j++) {
var name = keys[j]
target[name] = source[name]
}
}
return target
}