diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2018-12-19 22:08:49 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-19 22:08:49 -0500 |
commit | 419000d5568560b9e625ae8229b31cc90beca4ee (patch) | |
tree | 72dc1ef79c438d60491fb39d9f82f205590cb8dd /js/deno.ts | |
parent | 1cd18a9ac678e7863404a1ec598391937060e390 (diff) |
Expose deno.inspect (#1378)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index 869314d2c..a03e41fe3 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -52,6 +52,7 @@ export { connect, dial, listen, Listener, Conn } from "./net"; export { metrics } from "./metrics"; export { resources } from "./resources"; export { run, RunOptions, Process, ProcessStatus } from "./process"; +export { inspect } from "./console"; export const args: string[] = []; // Provide the compiler API in an obfuscated way |