File size: 83 Bytes
f0499d2
 
 
1
2
3
4
export function deepClone<T>(obj: T) {
  return JSON.parse(JSON.stringify(obj));
}