(path)
| 24 | } |
| 25 | |
| 26 | function isDirectory(path) { |
| 27 | try { |
| 28 | if (statSync(path).isDirectory()) return true; |
| 29 | } catch (ignored) { |
| 30 | // Nothing to do here |
| 31 | } |
| 32 | return false; |
| 33 | } |
| 34 | |
| 35 | export function getDynamicRequireModules(patterns, dynamicRequireRoot) { |
| 36 | const dynamicRequireModules = new Map(); |
no outgoing calls
no test coverage detected