diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-08-10 21:41:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 16:41:51 -0400 |
commit | 52c1017a74059655f9424f7ceb3f0c74dcc7f3be (patch) | |
tree | 9ac9c438a6916b67118e5f65e62caa97d35196c0 /cli/ops/runtime.rs | |
parent | 6fcf06306ed2ea52031a97b918f1e929d7209250 (diff) |
feat: Stabilize Deno.mainModule (#6993)
Diffstat (limited to 'cli/ops/runtime.rs')
-rw-r--r-- | cli/ops/runtime.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/ops/runtime.rs b/cli/ops/runtime.rs index 1e426ad8a..55f0d9f57 100644 --- a/cli/ops/runtime.rs +++ b/cli/ops/runtime.rs @@ -53,7 +53,6 @@ fn op_main_module( let main_path = std::env::current_dir().unwrap().join(main_url.to_string()); state.check_read_blind(&main_path, "main_module")?; } - state.check_unstable("Deno.mainModule"); Ok(JsonOp::Sync(json!(&main))) } |