extendable-media-recorder
Version:
An extendable drop-in replacement for the native MediaRecorder.
12 lines • 377 B
JavaScript
export const createInvalidStateError = () => {
try {
return new DOMException('', 'InvalidStateError');
}
catch (err) {
// Bug #122: Edge is the only browser that does not yet allow to construct a DOMException.
err.code = 11;
err.name = 'InvalidStateError';
return err;
}
};
//# sourceMappingURL=invalid-state-error.js.map