UNPKG
loro-codemirror
Version:
latest (0.2.0)
0.2.0
0.1.6
0.1.5
0.1.3
0.1.2
0.1.1
0.1.0
A CodeMirror plugin for loro
github.com/loro-dev/loro-codemirror
loro-dev/loro-codemirror
loro-codemirror
/
src
/
utils.ts
9 lines
(7 loc)
•
203 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
LoroDoc
,
LoroText
}
from
"loro-crdt"
;
/** * Get the text from the document */
export
const
defaultGetTextFromDoc = (
doc
:
LoroDoc
):
LoroText
=>
{
return
doc.
getText
(
"codemirror"
); };