From 4f9c552ed775880764ea6fad42cd0c643e63f940 Mon Sep 17 00:00:00 2001 From: vedhavyas Date: Tue, 20 Aug 2019 12:21:56 -0700 Subject: [PATCH] remove logs --- simple/prog/main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/simple/prog/main.go b/simple/prog/main.go index 1aa46cd..3622521 100644 --- a/simple/prog/main.go +++ b/simple/prog/main.go @@ -10,8 +10,6 @@ import ( // TODO: log seems to cause an issue func addition(this js.Value, args []js.Value) interface{} { fmt.Println("In WASM", args) - this.Set() - this.SetIndex() a, b := args[0].Int(), args[1].Int() return a + b }