diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-08-20 01:35:43 +1000 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-19 11:35:43 -0400 |
commit | f0a235563e1eb748f4030d19af3f9a5ac59d2550 (patch) | |
tree | b6753890b2baf6224c9facceb86d5ccf9f52ad44 /js/deno.ts | |
parent | 4faab6a74b0f583bba5ebcc877c6ea1407d360e3 (diff) |
Support custom inspection of objects (#2791)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts index 8dc4fd791..65a93c467 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -79,7 +79,7 @@ export { ProcessStatus, Signal } from "./process"; -export { inspect } from "./console"; +export { inspect, customInspect } from "./console"; export { build, platform, OperatingSystem, Arch } from "./build"; export { version } from "./version"; export const args: string[] = []; |