mirror of
https://github.com/koush/scrypted.git
synced 2026-02-11 01:32:02 +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));
|
|
}
|