Nova-Client/Solar/Launcher/node_modules/xtend
2023-03-19 19:32:58 +00:00
..
.npmignore !! 2023-03-19 19:32:58 +00:00
has-keys.js !! 2023-03-19 19:32:58 +00:00
index.js !! 2023-03-19 19:32:58 +00:00
LICENCE !! 2023-03-19 19:32:58 +00:00
Makefile !! 2023-03-19 19:32:58 +00:00
mutable.js !! 2023-03-19 19:32:58 +00:00
package.json !! 2023-03-19 19:32:58 +00:00
README.md !! 2023-03-19 19:32:58 +00:00
test.js !! 2023-03-19 19:32:58 +00: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