├── .babelrc.js ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc.json ├── LICENSE.md ├── README.md ├── package.json ├── rollup.config.js ├── src ├── createIdSelector.js ├── createSelector.js ├── createStructuredSelector.js └── index.js ├── test ├── old-tests.spec.js └── test.spec.js ├── transforms └── to-array-dependencies.js └── types ├── ts3.0.d.ts └── ts4.1 ├── createIdSelector.test.ts ├── createSelector.test.ts ├── index.d.ts ├── test.types.ts ├── tsconfig.json └── tslint.json /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | dist 5 | lib 6 | es 7 | coverage 8 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/createIdSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/src/createIdSelector.js -------------------------------------------------------------------------------- /src/createSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/src/createSelector.js -------------------------------------------------------------------------------- /src/createStructuredSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/src/createStructuredSelector.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/src/index.js -------------------------------------------------------------------------------- /test/old-tests.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/test/old-tests.spec.js -------------------------------------------------------------------------------- /test/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/test/test.spec.js -------------------------------------------------------------------------------- /transforms/to-array-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/transforms/to-array-dependencies.js -------------------------------------------------------------------------------- /types/ts3.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/types/ts3.0.d.ts -------------------------------------------------------------------------------- /types/ts4.1/createIdSelector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/types/ts4.1/createIdSelector.test.ts -------------------------------------------------------------------------------- /types/ts4.1/createSelector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/types/ts4.1/createSelector.test.ts -------------------------------------------------------------------------------- /types/ts4.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/types/ts4.1/index.d.ts -------------------------------------------------------------------------------- /types/ts4.1/test.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/types/ts4.1/test.types.ts -------------------------------------------------------------------------------- /types/ts4.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/types/ts4.1/tsconfig.json -------------------------------------------------------------------------------- /types/ts4.1/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepot/redux-views/HEAD/types/ts4.1/tslint.json --------------------------------------------------------------------------------