@digipair/skill-web-chatbot 0.20.1 → 0.21.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
|
@@ -52658,14 +52658,14 @@ function indent(str, spaces) {
|
|
|
52658
52658
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
52659
52659
|
// match is required
|
|
52660
52660
|
if (!match) {
|
|
52661
|
-
return
|
|
52661
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
52662
52662
|
v: nextMatch1
|
|
52663
52663
|
};
|
|
52664
52664
|
}
|
|
52665
52665
|
var token = match.token, offset = match.offset;
|
|
52666
52666
|
i1 += offset;
|
|
52667
52667
|
if (token === " ") {
|
|
52668
|
-
return
|
|
52668
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
52669
52669
|
}
|
|
52670
52670
|
tokens1 = _to_consumable_array$9(tokens1).concat([
|
|
52671
52671
|
token
|
|
@@ -52684,7 +52684,7 @@ function indent(str, spaces) {
|
|
|
52684
52684
|
if (contextKeys.some(function(el) {
|
|
52685
52685
|
return el.startsWith(name);
|
|
52686
52686
|
})) {
|
|
52687
|
-
return
|
|
52687
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
52688
52688
|
}
|
|
52689
52689
|
if (dateTimeIdentifiers.some(function(el) {
|
|
52690
52690
|
return el === name;
|
|
@@ -52703,9 +52703,9 @@ function indent(str, spaces) {
|
|
|
52703
52703
|
if (dateTimeIdentifiers.some(function(el) {
|
|
52704
52704
|
return el.startsWith(name);
|
|
52705
52705
|
})) {
|
|
52706
|
-
return
|
|
52706
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
52707
52707
|
}
|
|
52708
|
-
return
|
|
52708
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
52709
52709
|
v: nextMatch1
|
|
52710
52710
|
};
|
|
52711
52711
|
};
|