UNPKG

@uppy/utils

Version:

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

5 lines 212 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); }