func handlePanic()

in wasm/main.go [32:36]


func handlePanic() {
	if r := recover(); r != nil {
		fmt.Println("recovered from", r)
	}
}