module.exports = extend
var hasOwnProperty = Object.prototype.hasOwnProperty;
function extend() {
var target = {}
for (var i = 0; i < arguments.length; i++) {
var source = arguments[i]
for (var key in source) {
if (hasOwnProperty.call(source, key)) {
target[key] = source[key]
}
}
}
return target
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| .npmignore | File | 13 B | 0644 |
|
| LICENCE | File | 1.03 KB | 0644 |
|
| Makefile | File | 49 B | 0644 |
|
| README.md | File | 725 B | 0644 |
|
| immutable.js | File | 384 B | 0644 |
|
| mutable.js | File | 369 B | 0644 |
|
| package.json | File | 1.8 KB | 0644 |
|
| test.js | File | 1.72 KB | 0644 |
|