@digipair/skill-keycloak 0.23.12 → 0.24.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.cjs.js +5 -5
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -23523,14 +23523,14 @@ function indent(str, spaces) {
|
|
|
23523
23523
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23524
23524
|
// match is required
|
|
23525
23525
|
if (!match) {
|
|
23526
|
-
return
|
|
23526
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23527
23527
|
v: nextMatch1
|
|
23528
23528
|
};
|
|
23529
23529
|
}
|
|
23530
23530
|
var token = match.token, offset = match.offset;
|
|
23531
23531
|
i1 += offset;
|
|
23532
23532
|
if (token === " ") {
|
|
23533
|
-
return
|
|
23533
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23534
23534
|
}
|
|
23535
23535
|
tokens1 = _to_consumable_array$3(tokens1).concat([
|
|
23536
23536
|
token
|
|
@@ -23549,7 +23549,7 @@ function indent(str, spaces) {
|
|
|
23549
23549
|
if (contextKeys.some(function(el) {
|
|
23550
23550
|
return el.startsWith(name);
|
|
23551
23551
|
})) {
|
|
23552
|
-
return
|
|
23552
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23553
23553
|
}
|
|
23554
23554
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23555
23555
|
return el === name;
|
|
@@ -23568,9 +23568,9 @@ function indent(str, spaces) {
|
|
|
23568
23568
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23569
23569
|
return el.startsWith(name);
|
|
23570
23570
|
})) {
|
|
23571
|
-
return
|
|
23571
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23572
23572
|
}
|
|
23573
|
-
return
|
|
23573
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23574
23574
|
v: nextMatch1
|
|
23575
23575
|
};
|
|
23576
23576
|
};
|