How to read a selected file to Bytes or into a Stream – React native
I'm trying to send a file selected using react-native-document-picker over WebRTC, but I can't seem to get to reading it to bytes. In a browser I would use a FileReader to read from<input type="file">. document.querySelector('input').addEventListener('change', function() { var reader =…