@digipair/skill-keycloak 0.64.8 → 0.65.0-alpha4
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
@@ -23905,14 +23905,14 @@ function indent(str, spaces) {
|
|
23905
23905
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23906
23906
|
// match is required
|
23907
23907
|
if (!match) {
|
23908
|
-
return
|
23908
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
23909
23909
|
v: nextMatch1
|
23910
23910
|
};
|
23911
23911
|
}
|
23912
23912
|
var token = match.token, offset = match.offset;
|
23913
23913
|
i1 += offset;
|
23914
23914
|
if (token === " ") {
|
23915
|
-
return
|
23915
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
23916
23916
|
}
|
23917
23917
|
tokens1 = _to_consumable_array$3(tokens1).concat([
|
23918
23918
|
token
|
@@ -23931,7 +23931,7 @@ function indent(str, spaces) {
|
|
23931
23931
|
if (contextKeys.some(function(el) {
|
23932
23932
|
return el.startsWith(name);
|
23933
23933
|
})) {
|
23934
|
-
return
|
23934
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
23935
23935
|
}
|
23936
23936
|
if (dateTimeIdentifiers.some(function(el) {
|
23937
23937
|
return el === name;
|
@@ -23950,9 +23950,9 @@ function indent(str, spaces) {
|
|
23950
23950
|
if (dateTimeIdentifiers.some(function(el) {
|
23951
23951
|
return el.startsWith(name);
|
23952
23952
|
})) {
|
23953
|
-
return
|
23953
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
23954
23954
|
}
|
23955
|
-
return
|
23955
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
23956
23956
|
v: nextMatch1
|
23957
23957
|
};
|
23958
23958
|
};
|