//mozilla.org/MPL/2.0/. */ "use strict"; const constants = require("resource://devtools/client/dom/content/constants.js"); /** * Initial state definition */ function getInitialState() { return ""; } /** * Filter displayed object properties. */ function filter(state = getInitialState(), action) { if (action.type == constants.SET_VISIBILITY_FILTER) { return action.filter; } return state; } // Exports from this module exports.filter = filter; PK