Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.npmignore | D | 12-May-2024 | 13 | 2 | 1 | |
LICENCE | D | 12-May-2024 | 1 KiB | 20 | 16 | |
Makefile | D | 12-May-2024 | 49 | 4 | 3 | |
README.md | D | 12-May-2024 | 725 | 33 | 21 | |
immutable.js | D | 12-May-2024 | 384 | 20 | 14 | |
mutable.js | D | 12-May-2024 | 369 | 18 | 13 | |
package.json | D | 12-May-2024 | 1.8 KiB | 88 | 87 | |
test.js | D | 12-May-2024 | 1.7 KiB | 84 | 63 |
README.md
1 # xtend 2 3 [![browser support][3]][4] 4 5 [](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