(env: VirtualTypeScriptEnvironment, fileName: string)
| 33 | } |
| 34 | |
| 35 | export function fileExists(env: VirtualTypeScriptEnvironment, fileName: string) { |
| 36 | return env.sys.fileExists(normalizeFileName(fileName)); |
| 37 | } |
| 38 | |
| 39 | export function normalizeFileContent(content: string) { |
| 40 | return content || EMPTY_FILE_CONTENT; |
no test coverage detected
searching dependent graphs…