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