Creates a deep copy of an object to ensure no shared references with the original.
13 weeks ago
function deepClone<T>(obj: T): T { return JSON.parse(JSON.stringify(obj)); }