Merge pull request #155 from overleaf/em-dmp-timeout

Set the diff-match-patch timeout to 100ms
This commit is contained in:
Eric Mc Sween 2021-01-18 08:06:24 -05:00 committed by GitHub
commit 9b561b1763

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,