summaryrefslogtreecommitdiff
path: root/cli/js/web/navigator.ts
blob: 351c311d0589b472acc4f8fabb3e80348ec1b9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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,
});