From 8c70e72bfafdcbddb2bb5a8b8fc02590d18cea15 Mon Sep 17 00:00:00 2001 From: Eric Mc Sween Date: Mon, 7 Dec 2020 15:27:41 -0500 Subject: [PATCH] Decaf cleanup: unused variable --- services/document-updater/app/js/DiffCodec.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/services/document-updater/app/js/DiffCodec.js b/services/document-updater/app/js/DiffCodec.js index f52462869c..428f46c1c6 100644 --- a/services/document-updater/app/js/DiffCodec.js +++ b/services/document-updater/app/js/DiffCodec.js @@ -3,13 +3,11 @@ handle-callback-err, new-cap, no-throw-literal, - no-unused-vars, */ -let DiffCodec const { diff_match_patch } = require('../lib/diff_match_patch') const dmp = new diff_match_patch() -module.exports = DiffCodec = { +module.exports = { ADDED: 1, REMOVED: -1, UNCHANGED: 0,