shiroyk

Results 4 comments of shiroyk

A few days ago, I also encountered this issue. I noticed that there is a package-lock.json file in the project you provided, indicating that you probably used `npm install` to...

`npm` resolves dependencies differently than `yarn`, and this issue might be caused by conflicts between certain dependency versions.

Export to promise ```golang func main() { vm := goja.New() _, err := vm.RunString(` async function sum(a, b) { return a+b; } `) if err != nil { panic(err) }...

> > Export to promise > > ```go > > func main() { > > vm := goja.New() > > _, err := vm.RunString(` > > async function sum(a, b)...