From dce5b8759a0234c3704cd9b5701fb792b363286b Mon Sep 17 00:00:00 2001 From: Eric Mc Sween Date: Mon, 7 Dec 2020 15:29:24 -0500 Subject: [PATCH] Decaf cleanup: capitalize class names --- services/document-updater/app/js/DiffCodec.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/services/document-updater/app/js/DiffCodec.js b/services/document-updater/app/js/DiffCodec.js index bca22cd2b3..f6ea27712f 100644 --- a/services/document-updater/app/js/DiffCodec.js +++ b/services/document-updater/app/js/DiffCodec.js @@ -1,10 +1,5 @@ -/* eslint-disable - camelcase, - handle-callback-err, - new-cap, -*/ -const { diff_match_patch } = require('../lib/diff_match_patch') -const dmp = new diff_match_patch() +const { diff_match_patch: DMP } = require('../lib/diff_match_patch') +const dmp = new DMP() module.exports = { ADDED: 1,