UNPKG

@wordpress/blocks

Version:
8 lines (7 loc) 594 B
{ "version": 3, "sources": ["../../../src/api/raw-handling/empty-paragraph-remover.ts"], "sourcesContent": ["/**\n * Removes empty paragraph elements.\n *\n * @param node Node to check.\n */\nexport default function emptyParagraphRemover( node: Node ): void {\n\tif ( node.nodeName !== 'P' ) {\n\t\treturn;\n\t}\n\n\tif ( node.hasChildNodes() ) {\n\t\treturn;\n\t}\n\n\tnode.parentNode!.removeChild( node );\n}\n"], "mappings": ";AAKe,SAAR,sBAAwC,MAAmB;AACjE,MAAK,KAAK,aAAa,KAAM;AAC5B;AAAA,EACD;AAEA,MAAK,KAAK,cAAc,GAAI;AAC3B;AAAA,EACD;AAEA,OAAK,WAAY,YAAa,IAAK;AACpC;", "names": [] }