node/tools/eslint/node_modules/xtend
Rich Trott 72fa9f5663 tools: update ESLint to v3.8.0
Update ESLint to v3.8.0.

* Installed with `npm install --production` to avoid installing
  unnecessary dev files
* Used `dmn -f clean` to further eliminate unneeded files

PR-URL: https://github.com/nodejs/node/pull/9112
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2016-10-18 21:10:36 -07:00
..
immutable.js tools: update eslint to v1.10.3 2016-01-13 23:15:39 +01:00
LICENCE tools: update eslint to v1.10.3 2016-01-13 23:15:39 +01:00
Makefile tools: update eslint to v1.10.3 2016-01-13 23:15:39 +01:00
mutable.js tools: update eslint to v1.10.3 2016-01-13 23:15:39 +01:00
package.json tools: update ESLint to v3.8.0 2016-10-18 21:10:36 -07:00
README.md tools: update eslint to v1.10.3 2016-01-13 23:15:39 +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