(data: any[], rawStream: NodeJS.WritableStream)
| 94 | } |
| 95 | |
| 96 | async function writeExcel(data: any[], rawStream: NodeJS.WritableStream) { |
| 97 | data = convertNestedToJsonForExcelInPlace(data); |
| 98 | await writeWorkbook(data, rawStream); |
| 99 | } |
| 100 | |
| 101 | async function writeExcelStreamed(inputFilePath: any, rawStream: NodeJS.WritableStream, streamFn: any) { |
| 102 | await writeWorkbookStreamed(inputFilePath, rawStream, streamFn); |
nothing calls this directly
no test coverage detected