We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 164fa0e commit 390de45Copy full SHA for 390de45
lib/node-utils/is-node-of-type.ts
@@ -21,6 +21,9 @@ export const isVariableDeclaration = ASTUtils.isNodeOfType(
21
export const isAssignmentExpression = ASTUtils.isNodeOfType(
22
AST_NODE_TYPES.AssignmentExpression
23
);
24
+export const isChainExpression = ASTUtils.isNodeOfType(
25
+ AST_NODE_TYPES.ChainExpression
26
+);
27
export const isSequenceExpression = ASTUtils.isNodeOfType(
28
AST_NODE_TYPES.SequenceExpression
29
0 commit comments