Remove more contexts

This commit is contained in:
2024-10-05 20:50:55 +02:00
parent 5ea932c96e
commit 9de434ff2e
19 changed files with 105 additions and 291 deletions

View File

@@ -1,4 +1,5 @@
import { IMAGE_EXTENSIONS } from './constants';
export const isImageFile = (filePath) => {
const imageExtensions = ['.jpg', '.jpeg', '.png', '.gif', '.webp', '.svg'];
return imageExtensions.some((ext) => filePath.toLowerCase().endsWith(ext));
return IMAGE_EXTENSIONS.some((ext) => filePath.toLowerCase().endsWith(ext));
};