温红权 56e876213a 数据平台稽查 8 ani în urmă
..
.jshintrc b8a2165b08 视屏播放 9 ani în urmă
.npmignore b8a2165b08 视屏播放 9 ani în urmă
LICENCE b8a2165b08 视屏播放 9 ani în urmă
Makefile b8a2165b08 视屏播放 9 ani în urmă
README.md b8a2165b08 视屏播放 9 ani în urmă
immutable.js b8a2165b08 视屏播放 9 ani în urmă
mutable.js b8a2165b08 视屏播放 9 ani în urmă
package.json 56e876213a 数据平台稽查 8 ani în urmă
test.js b8a2165b08 视屏播放 9 ani în urmă

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