MCPcopy Create free account
hub / github.com/omkarcloud/botasaurus / writeExcel

Function writeExcel

js/botasaurus-server-js/src/writer-http.ts:96–99  ·  view source on GitHub ↗
(data: any[], rawStream: NodeJS.WritableStream)

Source from the content-addressed store, hash-verified

94}
95
96async function writeExcel(data: any[], rawStream: NodeJS.WritableStream) {
97 data = convertNestedToJsonForExcelInPlace(data);
98 await writeWorkbook(data, rawStream);
99}
100
101async function writeExcelStreamed(inputFilePath: any, rawStream: NodeJS.WritableStream, streamFn: any) {
102 await writeWorkbookStreamed(inputFilePath, rawStream, streamFn);

Callers

nothing calls this directly

Calls 2

writeWorkbookFunction · 0.70

Tested by

no test coverage detected