whitespace

This commit is contained in:
Duane Johnson
2020-07-12 09:38:20 -06:00
parent 368dc6b36a
commit 1a942aa4e0

View File

@@ -171,7 +171,7 @@ export class Doc extends Observable {
/**
* Converts the entire document into a js object, recursively traversing each yjs type
*
*
* @return {Object<string, any>}
*/
toJSON () {
@@ -183,7 +183,7 @@ export class Doc extends Observable {
for (const [k, v] of this.share.entries()) {
doc[k] = v.toJSON()
}
return doc
}