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

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