UNPKG

extendable-media-recorder

Version:

An extendable drop-in replacement for the native MediaRecorder.

10 lines (7 loc) 283 B
import { TNativeBlobEventConstructorFactory } from '../types'; export const createNativeBlobEventConstructor: TNativeBlobEventConstructorFactory = (window) => { if (window !== null && window.BlobEvent !== undefined) { return window.BlobEvent; } return null; };