(filename)
| 101 | } |
| 102 | |
| 103 | function findVFSForExists(filename) { |
| 104 | const normalized = resolve(filename); |
| 105 | for (let i = 0; i < activeVFSList.length; i++) { |
| 106 | const vfs = activeVFSList[i]; |
| 107 | if (vfs.shouldHandle(normalized)) { |
| 108 | return { vfs, exists: vfs.existsSync(normalized) }; |
| 109 | } |
| 110 | } |
| 111 | return null; |
| 112 | } |
| 113 | |
| 114 | function findVFSForPath(filename) { |
| 115 | const normalized = resolve(filename); |
no test coverage detected
searching dependent graphs…