4 lines
81 B
TypeScript
4 lines
81 B
TypeScript
|
export function clone<T>(o: T): T {
|
||
|
return <T>JSON.parse(JSON.stringify(o));
|
||
|
}
|