mirror of
https://github.com/koush/scrypted.git
synced 2026-03-02 01:02:57 +00:00
6 lines
108 B
TypeScript
6 lines
108 B
TypeScript
export function cloneDeep(o: any) {
|
|
if (!o)
|
|
return;
|
|
return JSON.parse(JSON.stringify(o));
|
|
}
|