UNPKG

@uppy/audio

Version:

Uppy plugin that records audio using the device’s microphone.

9 lines (8 loc) 249 B
export default function supportsMediaRecorder(): boolean { /* eslint-disable compat/compat */ return ( typeof MediaRecorder === 'function' && typeof MediaRecorder.prototype?.start === 'function' ) /* eslint-enable compat/compat */ }