名称 最后更新
..
.jshintrc 正在载入提交数据...
.npmignore 正在载入提交数据...
LICENCE 正在载入提交数据...
Makefile 正在载入提交数据...
README.md 正在载入提交数据...
immutable.js 正在载入提交数据...
mutable.js 正在载入提交数据...
package.json 正在载入提交数据...
test.js 正在载入提交数据...

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