summaryrefslogtreecommitdiff
path: root/js/url_search_params.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/url_search_params.ts')
-rw-r--r--js/url_search_params.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/url_search_params.ts b/js/url_search_params.ts
index 8e122191d..63c02d3b8 100644
--- a/js/url_search_params.ts
+++ b/js/url_search_params.ts
@@ -1,6 +1,6 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-import { URL } from "./url";
-import { requiredArguments, isIterable } from "./util";
+import { URL } from "./url.ts";
+import { requiredArguments, isIterable } from "./util.ts";
export class URLSearchParams {
private params: Array<[string, string]> = [];