diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-17 18:42:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 18:42:36 +0200 |
commit | c307e3e4be4e02de86103cd48d28f5ba3b18628d (patch) | |
tree | a6c830606fabcd1a08d81ed66ac882a5691f52a2 /cli/rt/11_url.js | |
parent | bda937938550a0969588a6878d2fb6d72c17b22d (diff) |
refactor: use Symbol.for instead of Symbol in cli/rt/ (#7537)
Diffstat (limited to 'cli/rt/11_url.js')
-rw-r--r-- | cli/rt/11_url.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/rt/11_url.js b/cli/rt/11_url.js index fee40ebcf..99f4ba0e1 100644 --- a/cli/rt/11_url.js +++ b/cli/rt/11_url.js @@ -2,7 +2,6 @@ ((window) => { const core = window.Deno.core; - const { customInspect } = window.__bootstrap.console; const { isIterable, requiredArguments } = window.__bootstrap.webUtil; /** https://url.spec.whatwg.org/#idna */ @@ -492,7 +491,7 @@ class URL { #searchParams = null; - [customInspect]() { + [Symbol.for("Deno.customInspect")]() { const keys = [ "href", "origin", |