chuwanghui 6d115466a5 electron库 | vor 6 Jahren | |
---|---|---|
.. | ||
.npmignore | vor 6 Jahren | |
LICENCE | vor 6 Jahren | |
Makefile | vor 6 Jahren | |
README.md | vor 6 Jahren | |
has-keys.js | vor 6 Jahren | |
index.js | vor 6 Jahren | |
mutable.js | vor 6 Jahren | |
package.json | vor 6 Jahren | |
test.js | vor 6 Jahren |
Extend like a boss
xtend is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes presedence.
var extend = require("xtend")
var combination = extend({
a: "a"
}, {
b: "b"
})
// { a: "a", b: "b" }