12 lines
148 B
Go
12 lines
148 B
Go
|
package wasm
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"syscall/js"
|
||
|
)
|
||
|
|
||
|
func FromJSValue(x js.Value, out interface{}) error {
|
||
|
// TODO
|
||
|
return fmt.Errorf("unimplemented")
|
||
|
}
|