1# xtend 2 3[![browser support][3]][4] 4 5[](http://github.com/badges/stability-badges) 6 7Extend like a boss 8 9xtend 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 14var extend = require("xtend") 15 16// extend returns a new object. Does not mutate arguments 17var 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 Licenced 29 30 31 [3]: http://ci.testling.com/Raynos/xtend.png 32 [4]: http://ci.testling.com/Raynos/xtend 33