2018-01-19 03:59:58 +08:00
|
|
|
/* 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/. */
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
const filters = require("./filters");
|
2018-02-28 12:17:13 +01:00
|
|
|
const requests = require("./requests");
|
2018-03-03 17:44:55 +01:00
|
|
|
const timingMarkers = require("./timing-markers");
|
2018-02-28 12:17:13 +01:00
|
|
|
const ui = require("./ui");
|
2018-01-19 03:59:58 +08:00
|
|
|
|
2018-03-03 17:44:55 +01:00
|
|
|
module.exports = Object.assign({}, filters, requests, timingMarkers, ui);
|