isBlob.ts 95 B

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