(file: string)
| 60 | } |
| 61 | |
| 62 | function stat(file: string) { |
| 63 | return statSync(file, { throwIfNoEntry: false }) ?? undefined |
| 64 | } |
| 65 | |
| 66 | function full(file: string) { |
| 67 | if (process.platform !== "win32") return file |
no outgoing calls
no test coverage detected