tools.js 119 Bytes Raw Blame History Permalink 1 2 3 4 5 export function deepCopy(obj) { var _obj = JSON.stringify(obj), objClone = JSON.parse(_obj); return objClone; }