flaschengeist-frontend/api/src/utils/misc.ts

4 lines
81 B
TypeScript

export function clone<T>(o: T): T {
return <T>JSON.parse(JSON.stringify(o));
}