(value: string)
| 45 | } |
| 46 | |
| 47 | function normalizeSlashes(value: string): string { |
| 48 | return value.replace(/\\/g, '/').replace(/\/+/g, '/') |
| 49 | } |
| 50 | |
| 51 | function stripMdExtension(value: string): string { |
| 52 | return value.replace(/\.md$/i, '') |
no outgoing calls
no test coverage detected