chuwanghui 6d115466a5 electron库 | před 6 roky | |
---|---|---|
.. | ||
.npmignore | před 6 roky | |
LICENCE | před 6 roky | |
Makefile | před 6 roky | |
README.md | před 6 roky | |
has-keys.js | před 6 roky | |
index.js | před 6 roky | |
mutable.js | před 6 roky | |
package.json | před 6 roky | |
test.js | před 6 roky |
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" }