@digipair/skill-vespa 0.50.15 → 0.52.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/index.esm.js
CHANGED
@@ -71940,14 +71940,14 @@ function indent(str, spaces) {
|
|
71940
71940
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
71941
71941
|
// match is required
|
71942
71942
|
if (!match) {
|
71943
|
-
return
|
71943
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
71944
71944
|
v: nextMatch1
|
71945
71945
|
};
|
71946
71946
|
}
|
71947
71947
|
var token = match.token, offset = match.offset;
|
71948
71948
|
i1 += offset;
|
71949
71949
|
if (token === " ") {
|
71950
|
-
return
|
71950
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
71951
71951
|
}
|
71952
71952
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
71953
71953
|
token
|
@@ -71966,7 +71966,7 @@ function indent(str, spaces) {
|
|
71966
71966
|
if (contextKeys.some(function(el) {
|
71967
71967
|
return el.startsWith(name);
|
71968
71968
|
})) {
|
71969
|
-
return
|
71969
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
71970
71970
|
}
|
71971
71971
|
if (dateTimeIdentifiers.some(function(el) {
|
71972
71972
|
return el === name;
|
@@ -71985,9 +71985,9 @@ function indent(str, spaces) {
|
|
71985
71985
|
if (dateTimeIdentifiers.some(function(el) {
|
71986
71986
|
return el.startsWith(name);
|
71987
71987
|
})) {
|
71988
|
-
return
|
71988
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
71989
71989
|
}
|
71990
|
-
return
|
71990
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
71991
71991
|
v: nextMatch1
|
71992
71992
|
};
|
71993
71993
|
};
|