Skip to content

Commit 4946436

Browse files
committed
make linter happy
1 parent bf83ea0 commit 4946436

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/common/parser/EscapeSequenceParser.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -890,9 +890,8 @@ export class EscapeSequenceParser extends Disposable implements IEscapeSequenceP
890890
// allowed: 00/08 .. 00/13, 02/00 .. 07/14 + NON_ASCII_PRINTABLE
891891
for (let j = i + 1; ; ++j) {
892892
if (j < length && (
893-
(data[j] >= 0x20 && data[j] < 0x7f) || (data[j] >= 0x08 && data[j] < 0x0e) || data[j] >= NON_ASCII_PRINTABLE
894-
)
895-
) continue;
893+
(data[j] >= 0x20 && data[j] < 0x7f) || (data[j] >= 0x08 && data[j] < 0x0e) || data[j] >= NON_ASCII_PRINTABLE
894+
)) continue;
896895
this._apcParser.put(data, i, j);
897896
i = j - 1;
898897
break;

0 commit comments

Comments
 (0)