shortcuts/regr/main.go

23 lines
374 B
Go
Raw Normal View History

2024-09-30 20:41:48 +00:00
//go:build js && wasm
// +build js,wasm
package main
import (
"l12.xyz/x/shortcuts/regr/src"
"syscall/js"
)
func InitRegrExports(this js.Value, args []js.Value) interface{} {
exports := args[0]
exports.Set("ABCD", js.FuncOf(src.ABCD))
return nil
}
func main() {
c := make(chan struct{}, 0)
js.Global().Set("__InitRegrExports", js.FuncOf(InitRegrExports))
<-c
}