Skip to content

Commit 10e8c78

Browse files
committed
chore: add tab to regex catcher
1 parent 0ce61a8 commit 10e8c78

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/src/utils/upload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function parseSetEntry(entry: string): Set<string> {
6565

6666
const ansiEscapeCode = '[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-PRZcf-nqry=><]',
6767
zeroWidthCharacterExceptNewline =
68-
'\u0000-\u0008\u000B-\u0019\u001b\u180e\u009b\u00ad\u200b\u2028\u2029\ufeff\ufe00-\ufe0f';
68+
'\u0000-\u0009\u000B-\u0019\u001b\u180e\u009b\u00ad\u200b\u2028\u2029\ufeff\ufe00-\ufe0f';
6969

7070
const zeroWidthCharactersExceptNewline = new RegExp(
7171
'(?:' + ansiEscapeCode + ')|[' + zeroWidthCharacterExceptNewline + ']',

0 commit comments

Comments
 (0)