diff options
Diffstat (limited to 'ext/url/00_url.js')
-rw-r--r-- | ext/url/00_url.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/url/00_url.js b/ext/url/00_url.js index ab3488455..3d81e5b9d 100644 --- a/ext/url/00_url.js +++ b/ext/url/00_url.js @@ -322,7 +322,7 @@ this[_url] = opUrlParse(url, base); } - [SymbolFor("Deno.privateCustomInspect")](inspect) { + [SymbolFor("Deno.privateCustomInspect")](inspect, inspectOptions) { const object = { href: this.href, origin: this.origin, @@ -336,7 +336,7 @@ hash: this.hash, search: this.search, }; - return `${this.constructor.name} ${inspect(object)}`; + return `${this.constructor.name} ${inspect(object, inspectOptions)}`; } #updateSearchParams() { |