(ice/INFO) ICE(PC:{xxxxxxxxxxxxxxxxxxxxxxxxxxx} 1642597104693000 (id=8589934598 url=https://40a8-46-61-84-174.ngrok.io/)): Skipping STUN server because of address type mis-match
(ice/INFO) ICE(PC:{xxxxxxxxxxxxxxxxxxxxxxxxxxx} 1642597719169000 (id=8589934600 url=https://40a8-46-61-84-174.ngrok.io/)): Skipping TURN server because of address type mis-match
const blobToBinary = async (blob) => {
const buffer = await blob.arrayBuffer();
const view = new Int8Array(buffer);
return [...view].map((n) => n.toString(2)).join(' ');
};
const blob = new Blob(["Example"], { type: "text/plain" });
blobToBinary(arrayBuffer).then(console.log);