diff options
-rw-r--r-- | src/intertyper.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js index 41967eb9..0f189863 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -988,7 +988,7 @@ function intertyper(lines, sidePass, baseLineNums) { // Input - var ret = lineSplitter().map(tokenizer).filter(function(item) { return item }).map(triager).filter(function(result) { + var ret = lineSplitter().map(tokenizer).map(triager).filter(function(result) { if (!result) return false; if (result.tokens) result.tokens = null; // We do not need tokens, past the intertyper. Clean them up as soon as possible here. return true; |