function deepClone()
in
src/deep-clone.js [1:3]
3
lines of code
1
McCabe index (conditional complexity)
function deepClone(obj) { return JSON.parse(JSON.stringify(obj)) }