GT2/GT2-iOS/node_modules/xtend
Ren Ren Juan 30eef7d036 correct tree err 2018-02-12 17:26:06 +00:00
..
node_modules/object-keys correct tree err 2018-02-12 17:26:06 +00:00
.npmignore correct tree err 2018-02-12 17:26:06 +00:00
LICENCE correct tree err 2018-02-12 17:26:06 +00:00
Makefile correct tree err 2018-02-12 17:26:06 +00:00
README.md correct tree err 2018-02-12 17:26:06 +00:00
has-keys.js correct tree err 2018-02-12 17:26:06 +00:00
index.js correct tree err 2018-02-12 17:26:06 +00:00
mutable.js correct tree err 2018-02-12 17:26:06 +00:00
package.json correct tree err 2018-02-12 17:26:06 +00:00
test.js correct tree err 2018-02-12 17:26:06 +00:00

README.md

xtend

browser support

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.

Examples

var extend = require("xtend")

var combination = extend({
    a: "a"
}, {
    b: "b"
})
// { a: "a", b: "b" }

MIT Licenced