forked from firefox-devtools/devtools-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
32 lines (30 loc) · 1.02 KB
/
index.js
File metadata and controls
32 lines (30 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
const { PrefsHelper } = require("./src/prefs");
const KeyShortcuts = require("./src/key-shortcuts");
const { ZoomKeys } = require("./src/zoom-keys");
const EventEmitter = require("./src/utils/event-emitter");
const asyncStorage = require("./src/async-storage");
const asyncStoreHelper = require("./src/async-store-helper");
const SourceUtils = require("./src/source-utils");
const Telemetry = require("./src/utils/telemetry");
const { getUnicodeHostname, getUnicodeUrlPath, getUnicodeUrl } =
require("./src/unicode-url");
const PluralForm = require("./src/plural-form");
const saveAs = require("./src/saveAs")
module.exports = {
KeyShortcuts,
PrefsHelper,
ZoomKeys,
asyncStorage,
asyncStoreHelper,
EventEmitter,
SourceUtils,
Telemetry,
getUnicodeHostname,
getUnicodeUrlPath,
getUnicodeUrl,
PluralForm
saveAs
};