UNPKG

@jovian/type-tools

Version:

TypeTools is a Typescript library for providing extensible tooling runtime validations and type helpers.

9 lines (7 loc) 171 B
export function deepCopy(obj: any) { if (global.structuredClone) { return global.structuredClone(obj); } else { return JSON.parse(JSON.stringify(obj)); } }