1 //go:build !amd64 && !arm64 && !js 2 3 package websocket 4 5 func mask(b []byte, key uint32) uint32 { 6 return maskGo(b, key) 7 } 8