UNPKG
@fellow/prosemirror-recreate-transform
Version:
latest (1.2.3)
1.2.3
1.2.2
1.2.1
Create a set of steps transforming one prosemirror json document to another
@fellow/prosemirror-recreate-transform
/
src
/
copy.ts
4 lines
(3 loc)
•
87 B
text/typescript
View Raw
1
2
3
4
export
function
copy<T>(
value
: T): T {
return
JSON
.
parse
(
JSON
.
stringify
(value)); }