@digipair/skill-vespa 0.114.6 → 0.114.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/dist/index.esm.js +5 -5
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -76048,14 +76048,14 @@ function indent(str, spaces) {
|
|
|
76048
76048
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
76049
76049
|
// match is required
|
|
76050
76050
|
if (!match) {
|
|
76051
|
-
return
|
|
76051
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
76052
76052
|
v: nextMatch1
|
|
76053
76053
|
};
|
|
76054
76054
|
}
|
|
76055
76055
|
var token = match.token, offset = match.offset;
|
|
76056
76056
|
i1 += offset;
|
|
76057
76057
|
if (token === ' ') {
|
|
76058
|
-
return
|
|
76058
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
76059
76059
|
}
|
|
76060
76060
|
tokens1 = _to_consumable_array$4(tokens1).concat([
|
|
76061
76061
|
token
|
|
@@ -76074,7 +76074,7 @@ function indent(str, spaces) {
|
|
|
76074
76074
|
if (contextKeys.some(function(el) {
|
|
76075
76075
|
return el.startsWith(name);
|
|
76076
76076
|
})) {
|
|
76077
|
-
return
|
|
76077
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
76078
76078
|
}
|
|
76079
76079
|
if (dateTimeIdentifiers.some(function(el) {
|
|
76080
76080
|
return el === name;
|
|
@@ -76093,9 +76093,9 @@ function indent(str, spaces) {
|
|
|
76093
76093
|
if (dateTimeIdentifiers.some(function(el) {
|
|
76094
76094
|
return el.startsWith(name);
|
|
76095
76095
|
})) {
|
|
76096
|
-
return
|
|
76096
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
76097
76097
|
}
|
|
76098
|
-
return
|
|
76098
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
76099
76099
|
v: nextMatch1
|
|
76100
76100
|
};
|
|
76101
76101
|
};
|