(target, thisArg, args)
| 120 | if (reprint) { |
| 121 | printer.print = new Proxy(original.print, { |
| 122 | apply(target, thisArg, args) { |
| 123 | let [path, options] = args as Parameters<typeof original.print> |
| 124 | let env = options.__tailwindcss__ as TransformerEnv |
| 125 | reprint(path, { ...env, options: options }) |
| 126 | return Reflect.apply(target, thisArg, args) |
| 127 | }, |
| 128 | }) |
| 129 | |
| 130 | if (original.embed) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…