Files
outline/shared/editor/lib/prosemirror-recreate-transform/copy.ts
2023-09-21 05:44:23 -07:00

4 lines
85 B
TypeScript

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