@digipair/skill-web-chatbot 0.119.4 → 0.119.6
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/dist/index.esm2.js +5 -5
- package/package.json +1 -1
package/dist/index.esm2.js
CHANGED
|
@@ -36301,14 +36301,14 @@ function indent(str, spaces) {
|
|
|
36301
36301
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
36302
36302
|
// match is required
|
|
36303
36303
|
if (!match) {
|
|
36304
|
-
return
|
|
36304
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
36305
36305
|
v: nextMatch1
|
|
36306
36306
|
};
|
|
36307
36307
|
}
|
|
36308
36308
|
var token = match.token, offset = match.offset;
|
|
36309
36309
|
i1 += offset;
|
|
36310
36310
|
if (token === ' ') {
|
|
36311
|
-
return
|
|
36311
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
36312
36312
|
}
|
|
36313
36313
|
tokens1 = _to_consumable_array$4$1(tokens1).concat([
|
|
36314
36314
|
token
|
|
@@ -36327,7 +36327,7 @@ function indent(str, spaces) {
|
|
|
36327
36327
|
if (contextKeys.some(function(el) {
|
|
36328
36328
|
return el.startsWith(name);
|
|
36329
36329
|
})) {
|
|
36330
|
-
return
|
|
36330
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
36331
36331
|
}
|
|
36332
36332
|
if (dateTimeIdentifiers.some(function(el) {
|
|
36333
36333
|
return el === name;
|
|
@@ -36346,9 +36346,9 @@ function indent(str, spaces) {
|
|
|
36346
36346
|
if (dateTimeIdentifiers.some(function(el) {
|
|
36347
36347
|
return el.startsWith(name);
|
|
36348
36348
|
})) {
|
|
36349
|
-
return
|
|
36349
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
36350
36350
|
}
|
|
36351
|
-
return
|
|
36351
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
36352
36352
|
v: nextMatch1
|
|
36353
36353
|
};
|
|
36354
36354
|
};
|