UNPKG

300 BJavaScriptView Raw
1module.exports = function isPreviewSupported (fileType) {
2 if (!fileType) return false
3 const fileTypeSpecific = fileType.split('/')[1]
4 // list of images that browsers can preview
5 if (/^(jpe?g|gif|png|svg|svg\+xml|bmp|webp|avif)$/.test(fileTypeSpecific)) {
6 return true
7 }
8 return false
9}