diff options
-rw-r--r-- | targets/wasm_exec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/targets/wasm_exec.js b/targets/wasm_exec.js index a0dd10a1e..eb153ed04 100644 --- a/targets/wasm_exec.js +++ b/targets/wasm_exec.js @@ -408,7 +408,7 @@ // func valueInstanceOf(v ref, t ref) bool "syscall/js.valueInstanceOf": (v_addr, t_addr) => { - return loadValue(v_attr) instanceof loadValue(t_addr); + return loadValue(v_addr) instanceof loadValue(t_addr); }, // func copyBytesToGo(dst []byte, src ref) (int, bool) |