(filePath: string)
| 279 | getAllPathsWithDirectories(nodes) |
| 280 | |
| 281 | const getFileName = (filePath: string): string => { |
| 282 | const lastSlash = filePath.lastIndexOf('/') |
| 283 | return lastSlash === -1 ? filePath : filePath.slice(lastSlash + 1) |
| 284 | } |
| 285 | |
| 286 | const createHighlightIndices = (start: number, end: number): number[] => [ |
| 287 | ...range(start, end), |
no outgoing calls
no test coverage detected