(app: any, context?: any)
| 46 | } |
| 47 | |
| 48 | const renderToStream = (app: any, context?: any) => { |
| 49 | return promisifyStream(renderToNodeStream(app, context)) |
| 50 | } |
| 51 | |
| 52 | const pipeToWritable = (app: any, context?: any) => { |
| 53 | const stream = new Transform({ |
nothing calls this directly
no test coverage detected