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.esm.js CHANGED
@@ -1,4 +1,4 @@
1
- import { Queue, isNum, matchIdStart2, jsVarRegexp } from 'bobe-shared';
1
+ import { Queue, isNum, matchIdStart2, matchId, jsVarRegexp } from 'bobe-shared';
2
2
  import { getPulling, setPulling, Keys, Computed, Effect, toRaw, runWithPulling, Scope, deepSignal, Store, shareSignal, effect } from 'aoye';
3
3
  export * from 'aoye';
4
4
 
@@ -587,7 +587,7 @@ class Tokenizer {
587
587
  let nextC;
588
588
  while (1) {
589
589
  nextC = this.code[this.i + 1];
590
- if (typeof nextC !== 'string' || !matchIdStart2(nextC, 0)) {
590
+ if (typeof nextC !== 'string' || !matchId(nextC, 0)) {
591
591
  break;
592
592
  }
593
593
  value += nextC;