(filePath: string, printer: PrinterConfig | undefined, options: string[])
| 70 | } |
| 71 | |
| 72 | function printFile_(filePath: string, printer: PrinterConfig | undefined, options: string[]) { |
| 73 | return exec(["lp", ...buildPrintArgs(filePath, printer, options)].join(" ")) |
| 74 | } |
| 75 | |
| 76 | function* buildPrintArgs(filePath: string, printer: PrinterConfig | undefined, options: string[]) { |
| 77 | if (printer) { |
no test coverage detected
searching dependent graphs…