node/tools/node_modules/eslint/node_modules/xtend
Yuta Hiroto 8c6d1a0686 tools: update ESLint to 5.2.0
PR-URL: https://github.com/nodejs/node/pull/21817
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-07-28 06:05:49 -07:00
..
immutable.js tools: move eslint from tools to tools/node_modules 2018-01-11 09:48:05 +01:00
LICENCE tools: move eslint from tools to tools/node_modules 2018-01-11 09:48:05 +01:00
Makefile tools: move eslint from tools to tools/node_modules 2018-01-11 09:48:05 +01:00
mutable.js tools: move eslint from tools to tools/node_modules 2018-01-11 09:48:05 +01:00
package.json tools: update ESLint to 5.2.0 2018-07-28 06:05:49 -07:00
README.md tools: move eslint from tools to tools/node_modules 2018-01-11 09:48:05 +01: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