mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-19 17:45:44 +02:00
7 lines
172 B
TypeScript
7 lines
172 B
TypeScript
|
|
|
|
export const isValidFile = (fileName: string) => {
|
|
return fileName.endsWith(`.md`) ||
|
|
fileName.endsWith(`.markdown`) ||
|
|
fileName.endsWith(`.mdx`);
|
|
} |