(filePath: string)
| 110 | } |
| 111 | |
| 112 | function getFileName(filePath: string): string { |
| 113 | return filePath.split("/").pop() || filePath; |
| 114 | } |
| 115 | |
| 116 | function isMarkdownFile(filePath: string): boolean { |
| 117 | return /\.(md|markdown|mdx)$/i.test(filePath); |
no outgoing calls
no test coverage detected