├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── jsdoc.json ├── logo.png ├── package.json ├── src └── index.js └── test ├── fixtures ├── loader.json └── user.json └── index.js /.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | docs 3 | .nyc_output 4 | .vscode 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/README.md -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/jsdoc.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/src/index.js -------------------------------------------------------------------------------- /test/fixtures/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/test/fixtures/loader.json -------------------------------------------------------------------------------- /test/fixtures/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/test/fixtures/user.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm-ph/quark-state/HEAD/test/index.js --------------------------------------------------------------------------------