| 20 | type Locale = "en" | "zh" | "ja"; |
| 21 | |
| 22 | interface ChapterSource { |
| 23 | id: string; |
| 24 | dirName: string; |
| 25 | dirPath: string; |
| 26 | codePath: string; |
| 27 | } |
| 28 | |
| 29 | function dirToVersionId(dirName: string): string | null { |
| 30 | const match = dirName.match(/^(s\d{2})_/); |
nothing calls this directly
no outgoing calls
no test coverage detected