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

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