@digipair/skill-imap 0.116.3 → 0.116.4
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.esm.js +5 -5
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -22841,14 +22841,14 @@ function indent(str, spaces) {
|
|
|
22841
22841
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
22842
22842
|
// match is required
|
|
22843
22843
|
if (!match) {
|
|
22844
|
-
return
|
|
22844
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
22845
22845
|
v: nextMatch1
|
|
22846
22846
|
};
|
|
22847
22847
|
}
|
|
22848
22848
|
var token = match.token, offset = match.offset;
|
|
22849
22849
|
i1 += offset;
|
|
22850
22850
|
if (token === ' ') {
|
|
22851
|
-
return
|
|
22851
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
22852
22852
|
}
|
|
22853
22853
|
tokens1 = _to_consumable_array$4(tokens1).concat([
|
|
22854
22854
|
token
|
|
@@ -22867,7 +22867,7 @@ function indent(str, spaces) {
|
|
|
22867
22867
|
if (contextKeys.some(function(el) {
|
|
22868
22868
|
return el.startsWith(name);
|
|
22869
22869
|
})) {
|
|
22870
|
-
return
|
|
22870
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
22871
22871
|
}
|
|
22872
22872
|
if (dateTimeIdentifiers.some(function(el) {
|
|
22873
22873
|
return el === name;
|
|
@@ -22886,9 +22886,9 @@ function indent(str, spaces) {
|
|
|
22886
22886
|
if (dateTimeIdentifiers.some(function(el) {
|
|
22887
22887
|
return el.startsWith(name);
|
|
22888
22888
|
})) {
|
|
22889
|
-
return
|
|
22889
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
22890
22890
|
}
|
|
22891
|
-
return
|
|
22891
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
22892
22892
|
v: nextMatch1
|
|
22893
22893
|
};
|
|
22894
22894
|
};
|