(path: string)
| 894 | } |
| 895 | |
| 896 | function resolveAbsolute(path: string): string { |
| 897 | return isAbsolute(path) ? path : resolve(process.cwd(), path); |
| 898 | } |
| 899 | |
| 900 | /** |
| 901 | * Drop a leading UTF-8 BOM (U+FEFF) from a freshly-read file. PowerShell 5.1's |
no outgoing calls
no test coverage detected