UNPKG

polen

Version:

A framework for delightful GraphQL developer portals

8 lines (7 loc) 264 B
/** * Check if a file path represents a page file (markdown or MDX) */ export const isPageFile = (filePath: string, pagesDirectory: string): boolean => { return (filePath.endsWith(`.md`) || filePath.endsWith(`.mdx`)) && filePath.includes(pagesDirectory) }