root 3bf41bf355 update | hai 1 ano | |
---|---|---|
.. | ||
.jshintrc | hai 1 ano | |
.npmignore | hai 1 ano | |
LICENCE | hai 1 ano | |
README.md | hai 1 ano | |
immutable.js | hai 1 ano | |
mutable.js | hai 1 ano | |
package.json | hai 1 ano | |
test.js | hai 1 ano |
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 precedence.
var extend = require("xtend")
// extend returns a new object. Does not mutate arguments
var combination = extend({
a: "a",
b: 'c'
}, {
b: "b"
})
// { a: "a", b: "b" }