Using the FileReader.readAsArrayBuffer() I read some content from a binary file and I got an ArrayBuffer.
Now I have to send the RAW binary read using a JQuery $.ajax.
The FileReader.readAsBinaryString() function is deprecated because marked as non-standard. I tried differents solutions also proposed here but alters the data due to binary -> UTF transformations.
Any hint is strongly apreciated, other than cycling through the array and adding each byte to the string to send.
Thanks for help! :-)