summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/url.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/url.ts')
-rw-r--r--ext/node/polyfills/url.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/node/polyfills/url.ts b/ext/node/polyfills/url.ts
index 6d38fd1ff..4366f14ea 100644
--- a/ext/node/polyfills/url.ts
+++ b/ext/node/polyfills/url.ts
@@ -27,8 +27,8 @@ import {
ERR_INVALID_FILE_URL_PATH,
ERR_INVALID_URL,
ERR_INVALID_URL_SCHEME,
-} from "internal:deno_node/polyfills/internal/errors.ts";
-import { validateString } from "internal:deno_node/polyfills/internal/validators.mjs";
+} from "internal:deno_node/internal/errors.ts";
+import { validateString } from "internal:deno_node/internal/validators.mjs";
import {
CHAR_0,
CHAR_9,
@@ -65,19 +65,19 @@ import {
CHAR_UPPERCASE_Z,
CHAR_VERTICAL_LINE,
CHAR_ZERO_WIDTH_NOBREAK_SPACE,
-} from "internal:deno_node/polyfills/path/_constants.ts";
-import * as path from "internal:deno_node/polyfills/path.ts";
-import { toASCII, toUnicode } from "internal:deno_node/polyfills/punycode.ts";
-import { isWindows, osType } from "internal:deno_node/polyfills/_util/os.ts";
+} from "internal:deno_node/path/_constants.ts";
+import * as path from "internal:deno_node/path.ts";
+import { toASCII, toUnicode } from "internal:deno_node/punycode.ts";
+import { isWindows, osType } from "internal:deno_node/_util/os.ts";
import {
encodeStr,
hexTable,
-} from "internal:deno_node/polyfills/internal/querystring.ts";
-import querystring from "internal:deno_node/polyfills/querystring.ts";
+} from "internal:deno_node/internal/querystring.ts";
+import querystring from "internal:deno_node/querystring.ts";
import type {
ParsedUrlQuery,
ParsedUrlQueryInput,
-} from "internal:deno_node/polyfills/querystring.ts";
+} from "internal:deno_node/querystring.ts";
import { URL, URLSearchParams } from "internal:deno_url/00_url.js";
const forwardSlashRegEx = /\//g;