1
|
# xtend
|
2
|
|
3
|
[![browser support][3]][4]
|
4
|
|
5
|
[![locked](http://badges.github.io/stability-badges/dist/locked.svg)](http://github.com/badges/stability-badges)
|
6
|
|
7
|
Extend like a boss
|
8
|
|
9
|
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.
|
10
|
|
11
|
## Examples
|
12
|
|
13
|
```js
|
14
|
var extend = require("xtend")
|
15
|
|
16
|
// extend returns a new object. Does not mutate arguments
|
17
|
var combination = extend({
|
18
|
a: "a",
|
19
|
b: "c"
|
20
|
}, {
|
21
|
b: "b"
|
22
|
})
|
23
|
// { a: "a", b: "b" }
|
24
|
```
|
25
|
|
26
|
## Stability status: Locked
|
27
|
|
28
|
## MIT Licensed
|
29
|
|
30
|
|
31
|
[3]: http://ci.testling.com/Raynos/xtend.png
|
32
|
[4]: http://ci.testling.com/Raynos/xtend
|