chat-client/node_modules/xtend
jsrobson10 a760adb0c5 Initial Commit 2019-03-24 17:22:44 +11:00
..
.npmignore Initial Commit 2019-03-24 17:22:44 +11:00
LICENCE Initial Commit 2019-03-24 17:22:44 +11:00
Makefile Initial Commit 2019-03-24 17:22:44 +11:00
README.md Initial Commit 2019-03-24 17:22:44 +11:00
has-keys.js Initial Commit 2019-03-24 17:22:44 +11:00
index.js Initial Commit 2019-03-24 17:22:44 +11:00
mutable.js Initial Commit 2019-03-24 17:22:44 +11:00
package.json Initial Commit 2019-03-24 17:22:44 +11:00
test.js Initial Commit 2019-03-24 17:22:44 +11: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