(name: string)
| 151 | const IMAGE_EXTENSIONS = ['.jpg', '.jpeg', '.png', '.gif', '.bmp', '.webp', '.tiff', '.tif']; |
| 152 | |
| 153 | function isImageFilename(name: string): boolean { |
| 154 | const lower = name.toLowerCase(); |
| 155 | return IMAGE_EXTENSIONS.some((ext) => lower.endsWith(ext)); |
| 156 | } |
| 157 | |
| 158 | function isImagesNamedDir(dir: string): boolean { |
| 159 | const lower = dir.toLowerCase(); |