UNPKG

238 BJavaScriptView Raw
1export default function isFunctionDeclaration ( node ) {
2 if ( !node ) return false;
3
4 return node.type === 'FunctionDeclaration' ||
5 ( node.type === 'VariableDeclaration' && node.init && /FunctionExpression/.test( node.init.type ) );
6}