src/deep-clone.js (4 lines of code) (raw):

function deepClone(obj) { return JSON.parse(JSON.stringify(obj)) } module.exports = deepClone;