@digipair/skill-vespa 0.8.6 → 0.8.8
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.cjs.js +5 -5
- package/package.json +1 -1
package/index.cjs.js
CHANGED
@@ -58055,14 +58055,14 @@ function indent(str, spaces) {
|
|
58055
58055
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
58056
58056
|
// match is required
|
58057
58057
|
if (!match) {
|
58058
|
-
return
|
58058
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
58059
58059
|
v: nextMatch1
|
58060
58060
|
};
|
58061
58061
|
}
|
58062
58062
|
var token = match.token, offset = match.offset;
|
58063
58063
|
i1 += offset;
|
58064
58064
|
if (token === " ") {
|
58065
|
-
return
|
58065
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
58066
58066
|
}
|
58067
58067
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
58068
58068
|
token
|
@@ -58081,7 +58081,7 @@ function indent(str, spaces) {
|
|
58081
58081
|
if (contextKeys.some(function(el) {
|
58082
58082
|
return el.startsWith(name);
|
58083
58083
|
})) {
|
58084
|
-
return
|
58084
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
58085
58085
|
}
|
58086
58086
|
if (dateTimeIdentifiers.some(function(el) {
|
58087
58087
|
return el === name;
|
@@ -58100,9 +58100,9 @@ function indent(str, spaces) {
|
|
58100
58100
|
if (dateTimeIdentifiers.some(function(el) {
|
58101
58101
|
return el.startsWith(name);
|
58102
58102
|
})) {
|
58103
|
-
return
|
58103
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
58104
58104
|
}
|
58105
|
-
return
|
58105
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
58106
58106
|
v: nextMatch1
|
58107
58107
|
};
|
58108
58108
|
};
|