isBlob.ts 98 B

12345
  1. export function isBlob(blob) {
  2. return typeof (Blob) !== 'undefined' && blob instanceof Blob;
  3. }