(importPath: string)
| 149 | }, |
| 150 | |
| 151 | validateImportPath(importPath: string): boolean { |
| 152 | try { |
| 153 | require.resolve(importPath); |
| 154 | return true; |
| 155 | } catch (e) { |
| 156 | return false; |
| 157 | } |
| 158 | } |
| 159 | }; |
| 160 | |
| 161 | function getBackendPath(backend: SupportedBackend) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…