nn e79c88f529 增加模块,以便在编辑器中可调试 8 vuotta sitten
..
.jshintrc 35a927ef98 迁移校园资讯游览器客户端 8 vuotta sitten
.npmignore 35a927ef98 迁移校园资讯游览器客户端 8 vuotta sitten
LICENCE e79c88f529 增加模块,以便在编辑器中可调试 8 vuotta sitten
Makefile 35a927ef98 迁移校园资讯游览器客户端 8 vuotta sitten
README.md e79c88f529 增加模块,以便在编辑器中可调试 8 vuotta sitten
has-keys.js 35a927ef98 迁移校园资讯游览器客户端 8 vuotta sitten
immutable.js 35a927ef98 迁移校园资讯游览器客户端 8 vuotta sitten
index.js 35a927ef98 迁移校园资讯游览器客户端 8 vuotta sitten
mutable.js e79c88f529 增加模块,以便在编辑器中可调试 8 vuotta sitten
package.json e79c88f529 增加模块,以便在编辑器中可调试 8 vuotta sitten
test.js e79c88f529 增加模块,以便在编辑器中可调试 8 vuotta sitten

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