isFile.ts 95 B

123
  1. export const isFile = obj => {
  2. return typeof File !== 'undefined' && obj instanceof File;
  3. };