mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-29 11:49:07 +00:00
28 lines
615 B
JavaScript
28 lines
615 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
const { PREFS } = require("devtools/client/webconsole/new-console-output/constants");
|
|
|
|
module.exports = {
|
|
prefs: {
|
|
getIntPref: pref => {
|
|
switch (pref) {
|
|
case "devtools.hud.loglimit":
|
|
return 1000;
|
|
}
|
|
},
|
|
getBoolPref: pref => {
|
|
const falsey = [
|
|
PREFS.FILTER.NET,
|
|
PREFS.FILTER.NETXHR,
|
|
PREFS.UI.FILTER_BAR,
|
|
];
|
|
return !falsey.includes(pref);
|
|
},
|
|
setBoolPref: () => {},
|
|
clearUserPref: () => {},
|
|
}
|
|
};
|