@digipair/skill-mongodb 0.34.3 → 0.35.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.cjs.js +5 -5
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -23581,14 +23581,14 @@ function indent(str, spaces) {
|
|
|
23581
23581
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23582
23582
|
// match is required
|
|
23583
23583
|
if (!match) {
|
|
23584
|
-
return
|
|
23584
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
23585
23585
|
v: nextMatch1
|
|
23586
23586
|
};
|
|
23587
23587
|
}
|
|
23588
23588
|
var token = match.token, offset = match.offset;
|
|
23589
23589
|
i1 += offset;
|
|
23590
23590
|
if (token === " ") {
|
|
23591
|
-
return
|
|
23591
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23592
23592
|
}
|
|
23593
23593
|
tokens1 = _to_consumable_array$a(tokens1).concat([
|
|
23594
23594
|
token
|
|
@@ -23607,7 +23607,7 @@ function indent(str, spaces) {
|
|
|
23607
23607
|
if (contextKeys.some(function(el) {
|
|
23608
23608
|
return el.startsWith(name);
|
|
23609
23609
|
})) {
|
|
23610
|
-
return
|
|
23610
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23611
23611
|
}
|
|
23612
23612
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23613
23613
|
return el === name;
|
|
@@ -23626,9 +23626,9 @@ function indent(str, spaces) {
|
|
|
23626
23626
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23627
23627
|
return el.startsWith(name);
|
|
23628
23628
|
})) {
|
|
23629
|
-
return
|
|
23629
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23630
23630
|
}
|
|
23631
|
-
return
|
|
23631
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
23632
23632
|
v: nextMatch1
|
|
23633
23633
|
};
|
|
23634
23634
|
};
|