Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « upload_dropzone « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf51a570d46dbf06c85accafd78ba27e70b6fba1 (plain)
1
2
3
4
import { VALID_IMAGE_FILE_MIMETYPE } from './constants';

export const isValidImage = ({ type }) =>
  (type.match(VALID_IMAGE_FILE_MIMETYPE.regex) || []).length > 0;