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