function deepClone()

in utils.js [19:21]


function deepClone(srcObj) {
  return srcObj ? JSON.parse(JSON.stringify(srcObj)) : undefined;
}