Dashboard sipadu mbip
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Siti Rahayu 79f738203a latest il y a 5 ans
..
.jshintrc latest il y a 5 ans
LICENSE latest il y a 5 ans
README.md latest il y a 5 ans
immutable.js latest il y a 5 ans
mutable.js latest il y a 5 ans
package.json latest il y a 5 ans
test.js latest il y a 5 ans

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 Licensed