UNPKG

eslint-plugin-unicorn

Version:
8 lines (7 loc) 196 B
export default function isExpressionStatement(node) { return node.type === 'ExpressionStatement' || ( node.type === 'ChainExpression' && node.parent.type === 'ExpressionStatement' ); }