(msg: string)
| 126 | // The bundle tab is lazy: image-only documents open it only when a raster |
| 127 | // actually needs print-resolution downscaling (eng-review D4). |
| 128 | const warn = (msg: string) => { |
| 129 | if (!opts.quiet) process.stderr.write(`\r\x1b[K[make-pdf] warning: ${msg}\n`); |
| 130 | }; |
| 131 | let renderTab: RenderTab | null = null; |
| 132 | let hasLandscape = false; |
| 133 | const getRenderTab = (): RenderTab | null => { |
no outgoing calls
no test coverage detected