├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── lib └── warning.js ├── package.json ├── react-localstorage.js ├── test ├── .eslintrc └── react-localstorage.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.jsx 2 | karma.conf.js 3 | yarn.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "setupFiles": ["jest-localstorage-mock"], 3 | } 4 | -------------------------------------------------------------------------------- /lib/warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/lib/warning.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/package.json -------------------------------------------------------------------------------- /react-localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/react-localstorage.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/react-localstorage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/test/react-localstorage.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STRML/react-localstorage/HEAD/yarn.lock --------------------------------------------------------------------------------