(chunk, controller)
| 120 | } |
| 121 | }, |
| 122 | transform(chunk, controller) { |
| 123 | try { |
| 124 | controller.enqueue( |
| 125 | stringify( |
| 126 | [chunk], |
| 127 | separator !== undefined |
| 128 | ? { separator, headers: false, columns } |
| 129 | : { headers: false, columns }, |
| 130 | ), |
| 131 | ); |
| 132 | } catch (error) { |
| 133 | controller.error(error); |
| 134 | } |
| 135 | }, |
| 136 | }, |
| 137 | ); |
| 138 | } |
nothing calls this directly
no test coverage detected