bobe 0.0.38 → 0.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bobe.cjs.js +1 -1
- package/dist/bobe.cjs.js.map +1 -1
- package/dist/bobe.compiler.cjs.js +1 -1
- package/dist/bobe.compiler.cjs.js.map +1 -1
- package/dist/bobe.compiler.esm.js +2 -2
- package/dist/bobe.compiler.esm.js.map +1 -1
- package/dist/bobe.esm.js +2 -2
- package/dist/bobe.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -3
package/dist/bobe.cjs.js
CHANGED
|
@@ -588,7 +588,7 @@ class Tokenizer {
|
|
|
588
588
|
let nextC;
|
|
589
589
|
while (1) {
|
|
590
590
|
nextC = this.code[this.i + 1];
|
|
591
|
-
if (typeof nextC !== 'string' || !bobeShared.
|
|
591
|
+
if (typeof nextC !== 'string' || !bobeShared.matchId(nextC, 0)) {
|
|
592
592
|
break;
|
|
593
593
|
}
|
|
594
594
|
value += nextC;
|