diff options
Diffstat (limited to 'std/bundle/run.ts')
-rw-r--r-- | std/bundle/run.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/std/bundle/run.ts b/std/bundle/run.ts deleted file mode 100644 index b5fc433c9..000000000 --- a/std/bundle/run.ts +++ /dev/null @@ -1,8 +0,0 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. - -import { evaluate, instantiate, load } from "./utils.ts"; - -const args = Deno.args; -const text = await load(args); -const result = evaluate(text); -instantiate(...result); |