theprogrammablemind
Advanced tools
Comparing version 7.3.5-beta.6 to 7.3.5-beta.7
@@ -1522,3 +1522,7 @@ const { Semantics, Semantic } = require('./src/semantics') | ||
const match = regexForm1.exec(line) || regexForm2.exec(line); | ||
return `${match[1]}:${match[2]}` | ||
if (match) { | ||
return `${match[1]}:${match[2]}` | ||
} else { | ||
return 'running in browser' | ||
} | ||
} | ||
@@ -1525,0 +1529,0 @@ |
@@ -63,4 +63,4 @@ { | ||
}, | ||
"version": "7.3.5-beta.6", | ||
"version": "7.3.5-beta.7", | ||
"license": "ISC" | ||
} |
159431
4607