Deep copy library for any data structure
npm install clonedeepA single method library used for cloning any sort of data structure in javascript!

js
// Import
const clone = require('deepClone');let objectArray = [{ a: 0, b: 2}, { a: 3, b: 5}];
let clonedObjectArray = clone(objectArray);
objectArray[0][a] = 6;
// => [{ a: 6, b: 2}, { a: 3, b: 5}];
console.log(clonedObjectArray);
// => [{ a: 0, b: 2}, { a: 3, b: 5}]
`Contributing
` bash
Clone the project locally
git clone git@github.com:joshghent/deepClone.git deepCloneChange directory
cd deepCloneInstall dependancies
npm installMake your changes + add a test for the new feature or bug you found!
then...
git add -A && git commit -m "Added an awwwwesome feature." && git push origin master
``