@digipair/skill-debug 0.121.14 → 0.121.15
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
|
@@ -22835,14 +22835,14 @@ function indent(str, spaces) {
|
|
|
22835
22835
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
22836
22836
|
// match is required
|
|
22837
22837
|
if (!match) {
|
|
22838
|
-
return i = i1,
|
|
22838
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
22839
22839
|
v: nextMatch1
|
|
22840
22840
|
};
|
|
22841
22841
|
}
|
|
22842
22842
|
var token = match.token, offset = match.offset;
|
|
22843
22843
|
i1 += offset;
|
|
22844
22844
|
if (token === ' ') {
|
|
22845
|
-
return i = i1,
|
|
22845
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
22846
22846
|
}
|
|
22847
22847
|
tokens1 = _to_consumable_array$4(tokens1).concat([
|
|
22848
22848
|
token
|
|
@@ -22861,7 +22861,7 @@ function indent(str, spaces) {
|
|
|
22861
22861
|
if (contextKeys.some(function(el) {
|
|
22862
22862
|
return el.startsWith(name);
|
|
22863
22863
|
})) {
|
|
22864
|
-
return i = i1,
|
|
22864
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
22865
22865
|
}
|
|
22866
22866
|
if (dateTimeIdentifiers.some(function(el) {
|
|
22867
22867
|
return el === name;
|
|
@@ -22880,9 +22880,9 @@ function indent(str, spaces) {
|
|
|
22880
22880
|
if (dateTimeIdentifiers.some(function(el) {
|
|
22881
22881
|
return el.startsWith(name);
|
|
22882
22882
|
})) {
|
|
22883
|
-
return i = i1,
|
|
22883
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
22884
22884
|
}
|
|
22885
|
-
return i = i1,
|
|
22885
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
22886
22886
|
v: nextMatch1
|
|
22887
22887
|
};
|
|
22888
22888
|
};
|