(base: string, filePath?: string)
| 94 | } |
| 95 | |
| 96 | function resolveIfRelative(base: string, filePath?: string) { |
| 97 | if (!filePath) return null |
| 98 | return path.isAbsolute(filePath) ? filePath : path.resolve(base, filePath) |
| 99 | } |
| 100 | |
| 101 | let pathToApiMap = expiringMap<string | null, Promise<UnifiedApi>>(10_000) |
| 102 |
no outgoing calls
no test coverage detected
searching dependent graphs…