CityBEM-CityLayers-SaeedRay.../node_modules/xtend
2024-11-05 15:01:14 -05:00
..
node_modules/object-keys This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
.npmignore This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
has-keys.js This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
index.js This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
LICENCE This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
Makefile This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
mutable.js This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
package.json This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
README.md This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00
test.js This commit pushes the node_modules folder separately due to its large size. 2024-11-05 15:01:14 -05:00

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