UNPKG

jscodeshaft

Version:

Collection of more or less primitive helpers and abstractions for JSCodeShift, build for design system migrations and upgrades.

5 lines (2 loc) 137 B
import { getType } from '../getType'; export const isElement = node => getType(node) === 'JSXElement' && Boolean(node.openingElement);