Deeply clone an input object.
npm install @ndhoule/cloneDeeply clones a source object.
``sh`
$ npm install @ndhoule/clone
Deeply copies an input object.
`javascript
var a = { a: 1 };
var cloned = clone(a);
console.log(cloned); //=> { a: 1 }
console.log(cloned === a); //=> false
``
Based on component/clone.
Released under the MIT license.
[ci-link]: https://travis-ci.org/ndhoule/clone
[ci-badge]: https://travis-ci.org/ndhoule/clone.svg?branch=master