UNPKG

cli-html

Version:
9 lines (6 loc) 237 B
import tags from '../tags.js'; export const renderTag = (node, context, defaultTag = tags.div) => { const tagFunction = tags[node.nodeName || '#text'] || defaultTag; const nodeTag = tagFunction(node, context); return nodeTag; };