UNPKG

kompendium

Version:

Documentation generator for Stencil components

11 lines (10 loc) 272 B
export function isParent(node) { return 'children' in node; } export function isTextNode(node) { return node.type === 'text'; } export function isElement(node) { return node.type === 'element' && 'tagName' in node; } //# sourceMappingURL=markdown-nodes.js.map