@mdx-js/mdx
Version:
MDX compiler
28 lines (25 loc) • 686 B
JavaScript
/**
* @import {
Declaration,
MaybeNamedClassDeclaration,
MaybeNamedFunctionDeclaration,
Node
* } from 'estree-jsx'
*/
// Fix to show references to above types in VS Code.
''
/**
* Check if `node` is a declaration.
*
* @param {Readonly<MaybeNamedClassDeclaration | MaybeNamedFunctionDeclaration | Node>} node
* Node to check.
* @returns {node is Declaration | MaybeNamedClassDeclaration | MaybeNamedFunctionDeclaration}
* Whether `node` is a declaration.
*/
export function isDeclaration(node) {
return Boolean(
node.type === 'FunctionDeclaration' ||
node.type === 'ClassDeclaration' ||
node.type === 'VariableDeclaration'
)
}