function deepClone()

in src/deep-clone.js [1:3]


function deepClone(obj) {
    return JSON.parse(JSON.stringify(obj))
}