├── .babelrc ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── package.json ├── src └── index.js └── tests └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/redux-storage-decorator-migrate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/redux-storage-decorator-migrate/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/redux-storage-decorator-migrate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/redux-storage-decorator-migrate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include node_modules/@mathieudutour/js-fatigue/Makefile 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/redux-storage-decorator-migrate/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/redux-storage-decorator-migrate/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/redux-storage-decorator-migrate/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/redux-storage-decorator-migrate/HEAD/tests/index.js --------------------------------------------------------------------------------