mirror of
https://github.com/lordmathis/lemma.git
synced 2025-11-08 00:44:22 +00:00
6 lines
174 B
JavaScript
6 lines
174 B
JavaScript
import { IMAGE_EXTENSIONS } from './constants';
|
|
|
|
export const isImageFile = (filePath) => {
|
|
return IMAGE_EXTENSIONS.some((ext) => filePath.toLowerCase().endsWith(ext));
|
|
};
|