@taiga-ui/eslint-plugin-experience-next 0.488.0 → 0.489.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.esm.js +7 -0
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -249836,6 +249836,13 @@ function collectArrayExpressions(node) {
|
|
|
249836
249836
|
result.push(node);
|
|
249837
249837
|
}
|
|
249838
249838
|
switch (node.type) {
|
|
249839
|
+
case dist$3.AST_NODE_TYPES.ArrayExpression:
|
|
249840
|
+
for (const element of node.elements) {
|
|
249841
|
+
if (element !== null) {
|
|
249842
|
+
result.push(...collectArrayExpressions(element));
|
|
249843
|
+
}
|
|
249844
|
+
}
|
|
249845
|
+
break;
|
|
249839
249846
|
case dist$3.AST_NODE_TYPES.BinaryExpression:
|
|
249840
249847
|
case dist$3.AST_NODE_TYPES.LogicalExpression:
|
|
249841
249848
|
result.push(...collectArrayExpressions(node.left));
|