(node, builder)
| 3 | let Stringifier = require('./stringifier') |
| 4 | |
| 5 | function stringify(node, builder) { |
| 6 | let str = new Stringifier(builder) |
| 7 | str.stringify(node) |
| 8 | } |
| 9 | |
| 10 | module.exports = stringify |
| 11 | stringify.default = stringify |
nothing calls this directly
no test coverage detected
searching dependent graphs…