diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-01-24 08:46:59 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 21:46:59 +0000 |
commit | 5aa25f08be0be6c097dd35cd5ea2c8c154b06929 (patch) | |
tree | b39e1b98edef432753f93b8c83b244f94685adaf /runtime/js/90_deno_ns.js | |
parent | ee0cfd3fd55910d3d8e8f802ec6401942dc71d5f (diff) |
feat: Add deprecation warning for `Deno.customInspect` (#22027)
This change sets the removal version of `Deno.customInspect` for Deno
v2.
Towards #22021
---------
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index e404d34d7..25ba2ef26 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -83,9 +83,6 @@ const denoNs = { futime: fs.futime, futimeSync: fs.futimeSync, errors: errors.errors, - // TODO(kt3k): Remove this export at v2 - // See https://github.com/denoland/deno/issues/9294 - customInspect: console.customInspect, inspect: console.inspect, env: os.env, exit: os.exit, |