Skip to content

Commit 0861f14

Browse files
fix: Add const to js variables
1 parent 7a8b9ba commit 0861f14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

grammar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
asciiSymbols = [ '!', '"', '#', '$', '%', '&', "'", '(', ')', '*',
1+
const asciiSymbols = [ '!', '"', '#', '$', '%', '&', "'", '(', ')', '*',
22
'+', ',', '-', '.', '/', ':', ';', '<', '=', '>', '?', '@', '[', ']',
33
'\\', '^', '_', '`', '{', '|', '}', '~' ]
44

5-
org_grammar = {
5+
const org_grammar = {
66
name: 'org',
77
// Treat newlines explicitly, all other whitespace is extra
88
extras: _ => [/[ \f\t\v\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]/],

0 commit comments

Comments
 (0)