node/deps/npm/node_modules/xtend
claudiahdz 17e420b23f deps: update npm to 6.11.3
PR-URL: https://github.com/nodejs/node/pull/29430
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
2019-09-17 18:51:21 -07:00
..
.npmignore deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00
immutable.js deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00
LICENCE deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00
Makefile deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00
mutable.js deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00
package.json deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00
README.md deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00
test.js deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00

xtend

browser support

locked

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

Examples

var extend = require("xtend")

// extend returns a new object. Does not mutate arguments
var combination = extend({
    a: "a",
    b: 'c'
}, {
    b: "b"
})
// { a: "a", b: "b" }

Stability status: Locked

MIT Licenced