How to use the redux-bundler.selectorNameToValueName function in redux-bundler

To help you get started, we’ve selected a few redux-bundler examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github HenrikJoreteg / redux-bundler-worker / src / get-store-proxy.js View on Github external
selectorNames.reduce((obj, name) => {
      const valueName = selectorNameToValueName(name)
      obj[valueName] = combinedData[valueName]
      return obj
    }, {})