UNPKG

213 BJavaScriptView Raw
1'use strict';
2
3
4module.exports = function () {
5 return function (ast) {
6 ast.children = ast.children.filter(function (node) {
7 return !(node.type == 'paragraph' && !node.children.length);
8 });
9 };
10};