(node, options)
| 23 | } from "../utilities/index.js"; |
| 24 | |
| 25 | function printClosingTag(node, options) { |
| 26 | return [ |
| 27 | node.isSelfClosing ? "" : printClosingTagStart(node, options), |
| 28 | printClosingTagEnd(node, options), |
| 29 | ]; |
| 30 | } |
| 31 | |
| 32 | function printClosingTagStart(node, options) { |
| 33 | return node.lastChild && |
no test coverage detected
searching dependent graphs…