xtend
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/xtend package

4.0.2 • Public • Published

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 Licensed

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 4.0.2
    80,840,182
    • latest

Version History

Package Sidebar

Install

npm i xtend

Weekly Downloads

26,139,726

Version

4.0.2

License

MIT

Unpacked Size

6.46 kB

Total Files

7

Last publish

Collaborators

  • raynos