libp2p / go-ws-transport

a websocket implementation of a go-libp2p transport
Other
60 stars 18 forks source link

go 1.14 wasm changes #95

Closed steamraven closed 4 years ago

steamraven commented 4 years ago

Do to changes in go 1.14, the syscall/js interface in wasm had breaking changes, specifically with comparing js.Value. Now we need to use js.Value.Equal instead of ==.

steamraven commented 4 years ago

96