UNPKG

payload-plugin-cloud-storage

Version:

Remote storage plugin for Payload CMS.

8 lines (6 loc) 215 B
export default function isImage (mimeType: unknown): boolean { if (typeof mimeType === 'string') { return ['image/jpeg', 'image/png', 'image/gif', 'image/svg+xml'].indexOf(mimeType) > -1 } return false }