@mintlify/common
Version:
Commonly shared code within Mintlify
12 lines (11 loc) • 326 B
JavaScript
export const isJsxOrTsx = (filePath) => {
if (!filePath)
return false;
const lower = filePath.toLowerCase();
return lower.endsWith('.jsx') || lower.endsWith('.tsx');
};
export const isTsxFile = (filePath) => {
if (!filePath)
return false;
return filePath.toLowerCase().endsWith('.tsx');
};