@digipair/skill-llm 0.29.5 → 0.30.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.cjs2.js +5 -5
- package/package.json +1 -1
package/index.cjs2.js
CHANGED
@@ -23509,14 +23509,14 @@ function indent(str, spaces) {
|
|
23509
23509
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23510
23510
|
// match is required
|
23511
23511
|
if (!match) {
|
23512
|
-
return
|
23512
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
23513
23513
|
v: nextMatch1
|
23514
23514
|
};
|
23515
23515
|
}
|
23516
23516
|
var token = match.token, offset = match.offset;
|
23517
23517
|
i1 += offset;
|
23518
23518
|
if (token === " ") {
|
23519
|
-
return
|
23519
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
23520
23520
|
}
|
23521
23521
|
tokens1 = _to_consumable_array$y(tokens1).concat([
|
23522
23522
|
token
|
@@ -23535,7 +23535,7 @@ function indent(str, spaces) {
|
|
23535
23535
|
if (contextKeys.some(function(el) {
|
23536
23536
|
return el.startsWith(name);
|
23537
23537
|
})) {
|
23538
|
-
return
|
23538
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
23539
23539
|
}
|
23540
23540
|
if (dateTimeIdentifiers.some(function(el) {
|
23541
23541
|
return el === name;
|
@@ -23554,9 +23554,9 @@ function indent(str, spaces) {
|
|
23554
23554
|
if (dateTimeIdentifiers.some(function(el) {
|
23555
23555
|
return el.startsWith(name);
|
23556
23556
|
})) {
|
23557
|
-
return
|
23557
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
23558
23558
|
}
|
23559
|
-
return
|
23559
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
23560
23560
|
v: nextMatch1
|
23561
23561
|
};
|
23562
23562
|
};
|