Peerjs:连接无法在 safari 和 iOS 上运行

Peerjs: on connection not working on safari and iOS

此代码在 android 和 pc 上运行良好 但不适用于 Safari 和 iOS

myPeer.on('connection', (conn) => {
                console.log("connection");
                conn.on('data', (data) => {
                    console.log(data);
                });
            });

在 safari 上我得到这个错误:

ERROR – "PeerJS: " – "Error:" – "(TypeError) Attempted to assign to readonly property."

此问题已在 peerjs@1.3.2 版本

中修复