summaryrefslogtreecommitdiff
path: root/cli/rt/11_url.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/rt/11_url.js')
-rw-r--r--cli/rt/11_url.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/rt/11_url.js b/cli/rt/11_url.js
index 86dcbf26d..e47f710c8 100644
--- a/cli/rt/11_url.js
+++ b/cli/rt/11_url.js
@@ -1,9 +1,9 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
((window) => {
+ const core = window.Deno.core;
const { getRandomValues } = window.__bootstrap.crypto;
const { customInspect } = window.__bootstrap.console;
- const { sendSync } = window.__bootstrap.dispatchJson;
const { isIterable, requiredArguments } = window.__bootstrap.webUtil;
/** https://url.spec.whatwg.org/#idna */
@@ -11,7 +11,7 @@
domain,
{ beStrict = false } = {},
) {
- return sendSync("op_domain_to_ascii", { domain, beStrict });
+ return core.jsonOpSync("op_domain_to_ascii", { domain, beStrict });
}
function decodeSearchParam(p) {