diff options
Diffstat (limited to 'deno_dir.go')
-rw-r--r-- | deno_dir.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/deno_dir.go b/deno_dir.go index b3a8c78b9..185f7abe0 100644 --- a/deno_dir.go +++ b/deno_dir.go @@ -3,7 +3,6 @@ package main import ( "crypto/md5" "encoding/hex" - "github.com/ry/v8worker2" "io" "io/ioutil" "net/http" @@ -84,13 +83,6 @@ func UserHomeDir() string { return os.Getenv("HOME") } -func loadAsset(w *v8worker2.Worker, path string) { - data, err := Asset(path) - check(err) - err = w.Load(path, string(data)) - check(err) -} - func createDirs() { DenoDir = path.Join(UserHomeDir(), ".deno") CompileDir = path.Join(DenoDir, "compile") |