isBlob.ts 98 B

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