tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

index.js (780B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 "use strict";
      5 
      6 const {
      7  accessibles,
      8 } = require("resource://devtools/client/accessibility/reducers/accessibles.js");
      9 const {
     10  audit,
     11 } = require("resource://devtools/client/accessibility/reducers/audit.js");
     12 const {
     13  details,
     14 } = require("resource://devtools/client/accessibility/reducers/details.js");
     15 const {
     16  simulation,
     17 } = require("resource://devtools/client/accessibility/reducers/simulation.js");
     18 const {
     19  ui,
     20 } = require("resource://devtools/client/accessibility/reducers/ui.js");
     21 
     22 exports.reducers = {
     23  accessibles,
     24  audit,
     25  details,
     26  simulation,
     27  ui,
     28 };