Shims/fixes for `RTCDataChannel.binaryType`
Description
- Shims
RTCDataChannel.binaryType: 'blob'in Chrome (which doesn't support it) - Makes 'blob' the default value for
RTCDataChannel.binaryTypein Chrome and Safari, as the spec states it should be.
Purpose
Make RTCDataChannel.binaryType work consistently across browsers.
the code looks nice but how will it deal with attempts to send a large blob (e.g. a whole file) over the datachannel?
(in general the resistance of the webrtc working group to adapt to the sad reality of chrome not implementing blob is surprising... the default should have been changed years ago)
the code looks nice but how will it deal with attempts to send a large blob (e.g. a whole file) over the datachannel?
I don't think that'd really be possible, while still sending it as a single message.
My understanding is that WebRTC currently has quite a small maximum message size anyway though.