@digipair/skill-dsp 0.18.6 → 0.18.7
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
|
@@ -23498,14 +23498,14 @@ function indent(str, spaces) {
|
|
|
23498
23498
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23499
23499
|
// match is required
|
|
23500
23500
|
if (!match) {
|
|
23501
|
-
return
|
|
23501
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
23502
23502
|
v: nextMatch1
|
|
23503
23503
|
};
|
|
23504
23504
|
}
|
|
23505
23505
|
var token = match.token, offset = match.offset;
|
|
23506
23506
|
i1 += offset;
|
|
23507
23507
|
if (token === " ") {
|
|
23508
|
-
return
|
|
23508
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23509
23509
|
}
|
|
23510
23510
|
tokens1 = _to_consumable_array$6(tokens1).concat([
|
|
23511
23511
|
token
|
|
@@ -23524,7 +23524,7 @@ function indent(str, spaces) {
|
|
|
23524
23524
|
if (contextKeys.some(function(el) {
|
|
23525
23525
|
return el.startsWith(name);
|
|
23526
23526
|
})) {
|
|
23527
|
-
return
|
|
23527
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23528
23528
|
}
|
|
23529
23529
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23530
23530
|
return el === name;
|
|
@@ -23543,9 +23543,9 @@ function indent(str, spaces) {
|
|
|
23543
23543
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23544
23544
|
return el.startsWith(name);
|
|
23545
23545
|
})) {
|
|
23546
|
-
return
|
|
23546
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23547
23547
|
}
|
|
23548
|
-
return
|
|
23548
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
23549
23549
|
v: nextMatch1
|
|
23550
23550
|
};
|
|
23551
23551
|
};
|