go-promises/new.go
2024-12-27 15:29:47 -06:00

8 lines
160 B
Go

package promises
import "syscall/js"
func NewGlobal(thing string, args ...any) js.Value {
newThing := js.Global().Get(thing)
return newThing.New(args...)
}