(filePath: string)
| 46 | } |
| 47 | |
| 48 | function fileNameWords(filePath: string): string[] { |
| 49 | const stem = basename(filePath).replace(/\.[^.]+$/, '') |
| 50 | return splitIdentifier(stem) |
| 51 | } |
| 52 | |
| 53 | // ─── Public API ───────────────────────────────────────────────────── |
| 54 |
no test coverage detected