(controller)
| 104 | super( |
| 105 | { |
| 106 | start(controller) { |
| 107 | if (columns && columns.length > 0) { |
| 108 | try { |
| 109 | controller.enqueue( |
| 110 | stringify( |
| 111 | [columns], |
| 112 | separator !== undefined |
| 113 | ? { separator, headers: false } |
| 114 | : { headers: false }, |
| 115 | ), |
| 116 | ); |
| 117 | } catch (error) { |
| 118 | controller.error(error); |
| 119 | } |
| 120 | } |
| 121 | }, |
| 122 | transform(chunk, controller) { |
| 123 | try { |
| 124 | controller.enqueue( |
nothing calls this directly
no test coverage detected