extendr
Utilities for cloning, extending, and de-referencing objects in shallow, deep, and safe ways
Install
- Install:
npm install --save extendr
- Module:
require('extendr')
- Install:
npm install --save extendr
- Module:
require('extendr')
- CDN URL:
//wzrd.in/bundle/extendr@3.3.0
- Install:
ender add extendr
- Module:
require('extendr')
This package is published with the following editions:
extendr
aliases extendr/index.js
which uses Editions to automatically select the correct edition for the consumers environmentextendr/source/index.js
is Source + ESNext + Requireextendr/es2015/index.js
is Babel Compiled + ES2015 + Require
Older environments may need Babel's Polyfill or something similar.
Usage
API
require('extendr').extend(target, ...objects)
- shallow extend the properties from the objects into the targetrequire('extendr').deep(target, ...objects)
- deep extend the properties from the objects into the targetrequire('extendr').defaults(target, ...objects)
- shallow extend the properties from the objects into the target where the target's value is undefined or nullrequire('extendr').deepDefaults(target, ...objects)
- deep extend the properties from the objects into the target where the target's value is undefined or nullrequire('extendr').clone(...objects)
- deep extend the properties from the objects into a new objectrequire('extendr').dereference(object)
- clones the object by traversing through it and setting up new instances of anything that can be referencedrequire('extendr').dereferenceJSON(object)
- clones the object by stringifying it, then parsing the result, to ensure all references are destroyed (objects that not plain objects or arrays will be lost)
Implementation
- Extendr arguments can only be plain JavaScript objects, anything else will throw. This is intentional to guarantee consistency of references.
- Object property values that are plain objects or arrays will be dereferenced. All other object types will keep their reference.
History
Discover the release history by heading on over to the HISTORY.md
file.
Contribute
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Backers
Maintainers
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
Contributors
These amazing people have contributed code to this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
License
Unless stated otherwise all works are:
and licensed under: