(node)
| 2301 | } |
| 2302 | |
| 2303 | function textEmptier(node) { |
| 2304 | if (node.value.length === 0) { |
| 2305 | return []; |
| 2306 | } else { |
| 2307 | return [node]; |
| 2308 | } |
| 2309 | } |
| 2310 | |
| 2311 | module.exports = simplify; |
| 2312 |
nothing calls this directly
no outgoing calls
no test coverage detected