()
| 16 | const cachedChecks = new Map<string, boolean>(); |
| 17 | |
| 18 | export function clearCachedLookups(): void { |
| 19 | cachedFileLookups.clear(); |
| 20 | cachedDirLookups.clear(); |
| 21 | cachedChecks.clear(); |
| 22 | } |
| 23 | |
| 24 | export default function cachedShouldLoadAsEsm( |
| 25 | path: string, |
no test coverage detected