We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a7b7e6 commit 19297c9Copy full SHA for 19297c9
1 file changed
src/compiler/tokenizer/scanners/group-sep.mjs
@@ -8,15 +8,6 @@ export default function groupSep(
8
return null;
9
}
10
11
- if (char.codePointAt(0) === 0x2063) {
12
- // INVISIBLE SEPERATOR
13
- return {
14
- type: "sep.col",
15
- value: char,
16
- end: start + char.length,
17
- };
18
- }
19
-
20
const colSepEnd = start + colSep.length;
21
const rowSepEnd = start + rowSep.length;
22
0 commit comments