go-promises/new.go

9 lines
160 B
Go
Raw Normal View History

2024-12-27 15:19:49 -06:00
package promises
import "syscall/js"
func NewGlobal(thing string, args ...any) js.Value {
newThing := js.Global().Get(thing)
return newThing.New(args...)
}