• Home
Name
Date
Size
#Lines
LOC

..--

.npmignoreD12-May-202413 21

LICENCED12-May-20241 KiB2016

MakefileD12-May-202449 43

README.mdD12-May-2024725 3321

immutable.jsD12-May-2024384 2014

mutable.jsD12-May-2024369 1813

package.jsonD12-May-20241.8 KiB8887

test.jsD12-May-20241.7 KiB8463

README.md

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 Licenced
29 
30 
31   [3]: http://ci.testling.com/Raynos/xtend.png
32   [4]: http://ci.testling.com/Raynos/xtend
33