(printer)
| 173 | |
| 174 | const normalizedPrinters = new WeakMap(); |
| 175 | function normalizePrinter(printer) { |
| 176 | return getOrInsertComputed( |
| 177 | normalizedPrinters, |
| 178 | printer, |
| 179 | normalizePrinterWithoutCache, |
| 180 | ); |
| 181 | } |
| 182 | |
| 183 | const PRINTER_FRONT_MATTER_SUPPORT_FEATURES = ["clean", "embed", "print"]; |
| 184 | const PRINTER_FRONT_MATTER_SUPPORT_OFF = Object.fromEntries( |
no test coverage detected
searching dependent graphs…