diff options
Diffstat (limited to 'js/location.ts')
-rw-r--r-- | js/location.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/location.ts b/js/location.ts index 535a2bcea..d495f99ca 100644 --- a/js/location.ts +++ b/js/location.ts @@ -1,8 +1,8 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { URL } from "./url"; -import { notImplemented } from "./util"; -import { Location } from "./dom_types"; -import { window } from "./window"; +import { URL } from "./url.ts"; +import { notImplemented } from "./util.ts"; +import { Location } from "./dom_types.ts"; +import { window } from "./window.ts"; export class LocationImpl implements Location { constructor(url: string) { |