/** * A very naive implementation of deepclone */ export function naiveDeepclone(someObject: T): T { return JSON.parse(JSON.stringify(someObject)); }