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