@digipair/skill-vespa 0.20.1 → 0.21.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
@@ -68100,14 +68100,14 @@ function indent(str, spaces) {
|
|
68100
68100
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
68101
68101
|
// match is required
|
68102
68102
|
if (!match) {
|
68103
|
-
return
|
68103
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
68104
68104
|
v: nextMatch1
|
68105
68105
|
};
|
68106
68106
|
}
|
68107
68107
|
var token = match.token, offset = match.offset;
|
68108
68108
|
i1 += offset;
|
68109
68109
|
if (token === " ") {
|
68110
|
-
return
|
68110
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
68111
68111
|
}
|
68112
68112
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
68113
68113
|
token
|
@@ -68126,7 +68126,7 @@ function indent(str, spaces) {
|
|
68126
68126
|
if (contextKeys.some(function(el) {
|
68127
68127
|
return el.startsWith(name);
|
68128
68128
|
})) {
|
68129
|
-
return
|
68129
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
68130
68130
|
}
|
68131
68131
|
if (dateTimeIdentifiers.some(function(el) {
|
68132
68132
|
return el === name;
|
@@ -68145,9 +68145,9 @@ function indent(str, spaces) {
|
|
68145
68145
|
if (dateTimeIdentifiers.some(function(el) {
|
68146
68146
|
return el.startsWith(name);
|
68147
68147
|
})) {
|
68148
|
-
return
|
68148
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
68149
68149
|
}
|
68150
|
-
return
|
68150
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
68151
68151
|
v: nextMatch1
|
68152
68152
|
};
|
68153
68153
|
};
|