admin_vue/11-前端模块化开发/04-webpack_Loader使用/node_modules/xtend
3056762376@qq.com 3e21965910 changes 2022-11-20 16:52:41 +08:00
..
.jshintrc changes 2022-11-20 16:52:41 +08:00
LICENSE changes 2022-11-20 16:52:41 +08:00
README.md changes 2022-11-20 16:52:41 +08:00
immutable.js changes 2022-11-20 16:52:41 +08:00
mutable.js changes 2022-11-20 16:52:41 +08:00
package.json changes 2022-11-20 16:52:41 +08:00
test.js changes 2022-11-20 16:52:41 +08:00

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