UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

9 lines (8 loc) 230 B
/** * Extractor function for a JSXElement type value node. * * Returns self-closing element with correct name. */ export default function extractValueFromJSXElement(value) { return `<${value.openingElement.name.name} />`; }