@digipair/skill-dsp 0.67.0 → 0.69.0
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
|
@@ -23912,14 +23912,14 @@ function indent(str, spaces) {
|
|
|
23912
23912
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23913
23913
|
// match is required
|
|
23914
23914
|
if (!match) {
|
|
23915
|
-
return
|
|
23915
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
23916
23916
|
v: nextMatch1
|
|
23917
23917
|
};
|
|
23918
23918
|
}
|
|
23919
23919
|
var token = match.token, offset = match.offset;
|
|
23920
23920
|
i1 += offset;
|
|
23921
23921
|
if (token === " ") {
|
|
23922
|
-
return
|
|
23922
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
23923
23923
|
}
|
|
23924
23924
|
tokens1 = _to_consumable_array$2(tokens1).concat([
|
|
23925
23925
|
token
|
|
@@ -23938,7 +23938,7 @@ function indent(str, spaces) {
|
|
|
23938
23938
|
if (contextKeys.some(function(el) {
|
|
23939
23939
|
return el.startsWith(name);
|
|
23940
23940
|
})) {
|
|
23941
|
-
return
|
|
23941
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
23942
23942
|
}
|
|
23943
23943
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23944
23944
|
return el === name;
|
|
@@ -23957,9 +23957,9 @@ function indent(str, spaces) {
|
|
|
23957
23957
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23958
23958
|
return el.startsWith(name);
|
|
23959
23959
|
})) {
|
|
23960
|
-
return
|
|
23960
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
23961
23961
|
}
|
|
23962
|
-
return
|
|
23962
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
23963
23963
|
v: nextMatch1
|
|
23964
23964
|
};
|
|
23965
23965
|
};
|