UNPKG

extendable-media-recorder

Version:

An extendable drop-in replacement for the native MediaRecorder.

9 lines 298 B
export const createEventTargetFactory = (window) => { return () => { if (window === null) { throw new Error('A native EventTarget could not be created.'); } return window.document.createElement('p'); }; }; //# sourceMappingURL=event-target-factory.js.map