isFile.ts 99 B

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