diff options
Diffstat (limited to 'ext/node/polyfills/querystring.ts')
-rw-r--r-- | ext/node/polyfills/querystring.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ext/node/polyfills/querystring.ts b/ext/node/polyfills/querystring.ts index 5885aaafa..4e65436b8 100644 --- a/ext/node/polyfills/querystring.ts +++ b/ext/node/polyfills/querystring.ts @@ -1,9 +1,6 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -import { Buffer } from "internal:deno_node/buffer.ts"; -import { - encodeStr, - hexTable, -} from "internal:deno_node/internal/querystring.ts"; +import { Buffer } from "ext:deno_node/buffer.ts"; +import { encodeStr, hexTable } from "ext:deno_node/internal/querystring.ts"; /** * Alias of querystring.parse() |