(doc)
| 352 | // - merge arrays of strings into single strings |
| 353 | // - remove nested `group`s and empty `fill`/`align`/`indent`/`line-suffix`/`if-break` if possible |
| 354 | function cleanDoc(doc) { |
| 355 | return mapDoc(doc, (currentDoc) => cleanDocFn(currentDoc)); |
| 356 | } |
| 357 | |
| 358 | /** |
| 359 | @param {Doc} doc |
no test coverage detected
searching dependent graphs…