mirror of
https://github.com/kotaindah55/extended-markdown-syntax.git
synced 2026-07-22 12:00:23 +00:00
3 lines
No EOL
103 B
TypeScript
3 lines
No EOL
103 B
TypeScript
export function deepCopy<T extends object>(obj: T) {
|
|
return JSON.parse(JSON.stringify(obj)) as T;
|
|
} |