├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── createStore.js ├── index.js └── rx-ext.js └── test └── createStore-spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | temp 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/package.json -------------------------------------------------------------------------------- /src/createStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/src/createStore.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/rx-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/src/rx-ext.js -------------------------------------------------------------------------------- /test/createStore-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcoetzee/udeo/HEAD/test/createStore-spec.js --------------------------------------------------------------------------------