// Clone json-serializable object export function cloneJsonObject(obj: T): T { return JSON.parse(JSON.stringify(obj)); }