summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/components/Forms/helpers/helpers.js
blob: 99c953a8f5664a7f176bc9206a535e48669de1eb (plain)
1
2
3
4
5
6
7
8
export default function isImage(file) {
  const fileName = file.name || file.path;
  const suffix = fileName.substr(fileName.indexOf('.') + 1).toLowerCase();
  if (suffix === 'jpg' || suffix === 'jpeg' || suffix === 'bmp' || suffix === 'png') {
    return true;
  }
  return false;
}