contentcollector: Delete unused domInterface parameter

This commit is contained in:
Richard Hansen 2021-01-21 02:30:29 -05:00 committed by John McLear
parent 42c25b2536
commit 74bb2f76cc
2 changed files with 3 additions and 3 deletions

View file

@ -32,8 +32,8 @@ const hooks = require('./pluginfw/hooks');
const sanitizeUnicode = (s) => UNorm.nfc(s);
const makeContentCollector = (collectStyles, abrowser, apool, domInterface, className2Author) => {
const dom = domInterface || {
const makeContentCollector = (collectStyles, abrowser, apool, className2Author) => {
const dom = {
isNodeText: (n) => n.nodeType === 3,
nodeTagName: (n) => n.tagName,
nodeValue: (n) => n.nodeValue,