diff options
Diffstat (limited to 'cli/rt/20_headers.js')
-rw-r--r-- | cli/rt/20_headers.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/rt/20_headers.js b/cli/rt/20_headers.js index 7b9ef8c8e..ccde77e8d 100644 --- a/cli/rt/20_headers.js +++ b/cli/rt/20_headers.js @@ -3,7 +3,6 @@ ((window) => { const { DomIterableMixin } = window.__bootstrap.domIterable; const { requiredArguments } = window.__bootstrap.webUtil; - const { customInspect } = window.__bootstrap.console; // From node-fetch // Copyright (c) 2016 David Frank. MIT License. @@ -194,7 +193,7 @@ } } - [customInspect]() { + [Symbol.for("Deno.customInspect")]() { let length = this[headersData].length; let output = ""; for (const [key, value] of this[headersData]) { |