Files
scrypted/common/src/clone-deep.ts

6 lines
108 B
TypeScript

export function cloneDeep(o: any) {
if (!o)
return;
return JSON.parse(JSON.stringify(o));
}