(value: string)
| 18 | const TOP_FOLDERS = ['inbox', 'quick', 'archive', 'trash'] |
| 19 | |
| 20 | function normalizeSlashes(value: string): string { |
| 21 | return value.replace(/\\/g, '/').replace(/\/+/g, '/') |
| 22 | } |
| 23 | |
| 24 | function stripMdExtension(value: string): string { |
| 25 | return value.replace(/\.md$/i, '') |
no outgoing calls
no test coverage detected