summaryrefslogtreecommitdiff
path: root/cli/js/web/navigator.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/web/navigator.ts')
-rw-r--r--cli/js/web/navigator.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/cli/js/web/navigator.ts b/cli/js/web/navigator.ts
deleted file mode 100644
index 351c311d0..000000000
--- a/cli/js/web/navigator.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-
-import { PermissionsImpl as Permissions } from "./permissions.ts";
-
-export class NavigatorImpl implements Navigator {
- permissions = new Permissions();
-}
-
-Object.defineProperty(NavigatorImpl, "name", {
- value: "Navigator",
- configurable: true,
-});