You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
227 B

5 years ago
  1. package jsruntime
  2. import (
  3. "github.com/dop251/goja_nodejs/console"
  4. "github.com/dop251/goja_nodejs/require"
  5. )
  6. func (jr *JsRuntime) EnableConsoleFun() {
  7. new(require.Registry).Enable(jr.runtime)
  8. console.Enable(jr.runtime)
  9. }