UNPKG

@uppy/utils

Version:

Shared utility functions for Uppy Core and plugins maintained by the Uppy team.

7 lines (6 loc) 227 B
export default function isPreviewSupported(fileType) { if (!fileType) return false; // list of images that browsers can preview return /^[^/]+\/(jpe?g|gif|png|svg|svg\+xml|bmp|webp|avif)$/.test(fileType); }