Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/text0.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ text.compose = function(op1, op2) {
// quill-delta uses for rich-text) and mapping its equal/insert/delete segments to text0 ops.
// fast-diff is O(n*d) in the edit distance: fine when the two strings share most content (a small edit in
// a huge doc strips to a tiny residual), but degrades to ~O(n^2) for large, substantially-different pairs.
// See <editor issue>
// See reedsy/reedsy-editor#14908
text.diff = function(before, after) {
var op = [];
var p = 0;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reedsy/ot-json0",
"version": "1.1.0-reedsy.1.2.7",
"version": "1.1.0-reedsy.1.3.0",
"description": "JSON OT type",
"main": "lib/index.js",
"directories": {
Expand Down
Loading