Set the diff-match-patch timeout to 100ms

This might result in worse diffs, but we don't want to spend a second
blocking the event loop while we figure out nicer diffs when comparing
documents.
This commit is contained in:
Eric Mc Sween 2021-01-14 15:11:15 -05:00
parent 9af14ef513
commit 98f8d7f51c

View file

@ -1,6 +1,9 @@
const DMP = require('diff-match-patch')
const dmp = new DMP()
// Do not attempt to produce a diff for more than 100ms
dmp.Diff_Timeout = 0.1
module.exports = {
ADDED: 1,
REMOVED: -1,