@digipair/skill-dsp 0.96.0 → 0.97.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/schema.fr.json +821 -430
- package/schema.json +821 -430
package/index.esm.js
CHANGED
|
@@ -23951,14 +23951,14 @@ function indent(str, spaces) {
|
|
|
23951
23951
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23952
23952
|
// match is required
|
|
23953
23953
|
if (!match) {
|
|
23954
|
-
return
|
|
23954
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23955
23955
|
v: nextMatch1
|
|
23956
23956
|
};
|
|
23957
23957
|
}
|
|
23958
23958
|
var token = match.token, offset = match.offset;
|
|
23959
23959
|
i1 += offset;
|
|
23960
23960
|
if (token === " ") {
|
|
23961
|
-
return
|
|
23961
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23962
23962
|
}
|
|
23963
23963
|
tokens1 = _to_consumable_array$5(tokens1).concat([
|
|
23964
23964
|
token
|
|
@@ -23977,7 +23977,7 @@ function indent(str, spaces) {
|
|
|
23977
23977
|
if (contextKeys.some(function(el) {
|
|
23978
23978
|
return el.startsWith(name);
|
|
23979
23979
|
})) {
|
|
23980
|
-
return
|
|
23980
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23981
23981
|
}
|
|
23982
23982
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23983
23983
|
return el === name;
|
|
@@ -23996,9 +23996,9 @@ function indent(str, spaces) {
|
|
|
23996
23996
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23997
23997
|
return el.startsWith(name);
|
|
23998
23998
|
})) {
|
|
23999
|
-
return
|
|
23999
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
24000
24000
|
}
|
|
24001
|
-
return
|
|
24001
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
24002
24002
|
v: nextMatch1
|
|
24003
24003
|
};
|
|
24004
24004
|
};
|