katwhite 2bb8a30479 i hope this works hace 4 años
..
.jshintrc 2bb8a30479 i hope this works hace 4 años
.npmignore 2bb8a30479 i hope this works hace 4 años
LICENCE 2bb8a30479 i hope this works hace 4 años
Makefile 2bb8a30479 i hope this works hace 4 años
README.md 2bb8a30479 i hope this works hace 4 años
immutable.js 2bb8a30479 i hope this works hace 4 años
mutable.js 2bb8a30479 i hope this works hace 4 años
package.json 2bb8a30479 i hope this works hace 4 años
test.js 2bb8a30479 i hope this works hace 4 años

README.md

xtend

browser support

locked

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.

Examples

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" }

Stability status: Locked

MIT Licenced