@digipair/skill-mongodb 0.98.2 → 0.98.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/index.esm.js +5 -5
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -23947,14 +23947,14 @@ function indent(str, spaces) {
|
|
|
23947
23947
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23948
23948
|
// match is required
|
|
23949
23949
|
if (!match) {
|
|
23950
|
-
return
|
|
23950
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
|
23951
23951
|
v: nextMatch1
|
|
23952
23952
|
};
|
|
23953
23953
|
}
|
|
23954
23954
|
var token = match.token, offset = match.offset;
|
|
23955
23955
|
i1 += offset;
|
|
23956
23956
|
if (token === " ") {
|
|
23957
|
-
return
|
|
23957
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23958
23958
|
}
|
|
23959
23959
|
tokens1 = _to_consumable_array$c(tokens1).concat([
|
|
23960
23960
|
token
|
|
@@ -23973,7 +23973,7 @@ function indent(str, spaces) {
|
|
|
23973
23973
|
if (contextKeys.some(function(el) {
|
|
23974
23974
|
return el.startsWith(name);
|
|
23975
23975
|
})) {
|
|
23976
|
-
return
|
|
23976
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23977
23977
|
}
|
|
23978
23978
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23979
23979
|
return el === name;
|
|
@@ -23992,9 +23992,9 @@ function indent(str, spaces) {
|
|
|
23992
23992
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23993
23993
|
return el.startsWith(name);
|
|
23994
23994
|
})) {
|
|
23995
|
-
return
|
|
23995
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23996
23996
|
}
|
|
23997
|
-
return
|
|
23997
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
|
23998
23998
|
v: nextMatch1
|
|
23999
23999
|
};
|
|
24000
24000
|
};
|