chuwanghui 6d115466a5 electron库 6 年之前
..
.npmignore 6d115466a5 electron库 6 年之前
LICENCE 6d115466a5 electron库 6 年之前
Makefile 6d115466a5 electron库 6 年之前
README.md 6d115466a5 electron库 6 年之前
has-keys.js 6d115466a5 electron库 6 年之前
index.js 6d115466a5 electron库 6 年之前
mutable.js 6d115466a5 electron库 6 年之前
package.json 6d115466a5 electron库 6 年之前
test.js 6d115466a5 electron库 6 年之前

README.md

xtend

browser support

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 presedence.

Examples

var extend = require("xtend")

var combination = extend({
    a: "a"
}, {
    b: "b"
})
// { a: "a", b: "b" }

MIT Licenced