@digipair/skill-dsp 0.37.0 → 0.37.1
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/index.esm.js +5 -5
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -23502,14 +23502,14 @@ function indent(str, spaces) {
|
|
|
23502
23502
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23503
23503
|
// match is required
|
|
23504
23504
|
if (!match) {
|
|
23505
|
-
return
|
|
23505
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23506
23506
|
v: nextMatch1
|
|
23507
23507
|
};
|
|
23508
23508
|
}
|
|
23509
23509
|
var token = match.token, offset = match.offset;
|
|
23510
23510
|
i1 += offset;
|
|
23511
23511
|
if (token === " ") {
|
|
23512
|
-
return
|
|
23512
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23513
23513
|
}
|
|
23514
23514
|
tokens1 = _to_consumable_array$6(tokens1).concat([
|
|
23515
23515
|
token
|
|
@@ -23528,7 +23528,7 @@ function indent(str, spaces) {
|
|
|
23528
23528
|
if (contextKeys.some(function(el) {
|
|
23529
23529
|
return el.startsWith(name);
|
|
23530
23530
|
})) {
|
|
23531
|
-
return
|
|
23531
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23532
23532
|
}
|
|
23533
23533
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23534
23534
|
return el === name;
|
|
@@ -23547,9 +23547,9 @@ function indent(str, spaces) {
|
|
|
23547
23547
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23548
23548
|
return el.startsWith(name);
|
|
23549
23549
|
})) {
|
|
23550
|
-
return
|
|
23550
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23551
23551
|
}
|
|
23552
|
-
return
|
|
23552
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23553
23553
|
v: nextMatch1
|
|
23554
23554
|
};
|
|
23555
23555
|
};
|