( metadata: DepOptimizationMetadata, file: string, )
| 1383 | } |
| 1384 | |
| 1385 | export function optimizedDepInfoFromFile( |
| 1386 | metadata: DepOptimizationMetadata, |
| 1387 | file: string, |
| 1388 | ): OptimizedDepInfo | undefined { |
| 1389 | return metadata.depInfoList.find((depInfo) => depInfo.file === file) |
| 1390 | } |
| 1391 | |
| 1392 | function findOptimizedDepInfoInRecord( |
| 1393 | dependenciesInfo: Record<string, OptimizedDepInfo>, |
no outgoing calls
no test coverage detected