function getWatchpoints(state) { return getObjectInspectorState(state).watchpoints; } function getLoadedProperties(state) { return getObjectInspectorState(state).loadedProperties; } function getLoadedPropertyKeys(state) { return [...getLoadedProperties(state).keys()]; } function getEvaluations(state) { return getObjectInspectorState(state).evaluations; } const selectors = { getWatchpoints, getEvaluations, getExpandedPathKeys, getExpandedPaths, getLoadedProperties, getLoadedPropertyKeys, }; Object.defineProperty(module.exports, "__esModule", { value: true, }); module.exports = { ...selectors, initialOIState }; module.exports.default = reducer; PK