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