diff options
Diffstat (limited to 'main.js')
-rw-r--r-- | main.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -241,7 +241,7 @@ const parse = (str) => { .trim() .split(/\r?\n/) .every((line) => { - if (line.startsWith("--") || line.length == 0) return true; + if (line.startsWith("--") || line.length === 0) return true; if (!line.includes("=")) { t = resolveTerm(parseTerm(line), defs); return false; |