├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── example └── es5Avaiable.js ├── karma.conf.js ├── package.json ├── src ├── __test__ │ └── index.js ├── index.js └── utils │ ├── Constants.js │ ├── __test__ │ ├── Constants.spec.js │ ├── constantHub.spec.js │ └── fnUtils.spec.js │ ├── constantHub.js │ └── fnUtils.js ├── webpack.config.base.js ├── webpack.config.development.js └── webpack.config.production.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | dist 5 | lib 6 | coverage -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/README.md -------------------------------------------------------------------------------- /example/es5Avaiable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/example/es5Avaiable.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/package.json -------------------------------------------------------------------------------- /src/__test__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/src/__test__/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/src/utils/Constants.js -------------------------------------------------------------------------------- /src/utils/__test__/Constants.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/src/utils/__test__/Constants.spec.js -------------------------------------------------------------------------------- /src/utils/__test__/constantHub.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/src/utils/__test__/constantHub.spec.js -------------------------------------------------------------------------------- /src/utils/__test__/fnUtils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/src/utils/__test__/fnUtils.spec.js -------------------------------------------------------------------------------- /src/utils/constantHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/src/utils/constantHub.js -------------------------------------------------------------------------------- /src/utils/fnUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/src/utils/fnUtils.js -------------------------------------------------------------------------------- /webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/webpack.config.base.js -------------------------------------------------------------------------------- /webpack.config.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/webpack.config.development.js -------------------------------------------------------------------------------- /webpack.config.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesvods/react-constant/HEAD/webpack.config.production.js --------------------------------------------------------------------------------