├── .gitignore ├── examples └── factorial.js ├── fantasy-states.js ├── package.json ├── src └── state.js └── test ├── lib └── test.js └── state.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | fantasy-states.*.js 3 | -------------------------------------------------------------------------------- /examples/factorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/fantasy-states/HEAD/examples/factorial.js -------------------------------------------------------------------------------- /fantasy-states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/fantasy-states/HEAD/fantasy-states.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/fantasy-states/HEAD/package.json -------------------------------------------------------------------------------- /src/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/fantasy-states/HEAD/src/state.js -------------------------------------------------------------------------------- /test/lib/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/fantasy-states/HEAD/test/lib/test.js -------------------------------------------------------------------------------- /test/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/fantasy-states/HEAD/test/state.js --------------------------------------------------------------------------------