├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── bower.json ├── package.json ├── pokersolver.js └── test ├── deuceswild.js ├── fourcard.js ├── fourcardbonus.js ├── jacksbetter.js ├── joker.js ├── paigowpokerfullhands.js ├── standard.js ├── test.js └── threecard.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: goldfire 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/package.json -------------------------------------------------------------------------------- /pokersolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/pokersolver.js -------------------------------------------------------------------------------- /test/deuceswild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/deuceswild.js -------------------------------------------------------------------------------- /test/fourcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/fourcard.js -------------------------------------------------------------------------------- /test/fourcardbonus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/fourcardbonus.js -------------------------------------------------------------------------------- /test/jacksbetter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/jacksbetter.js -------------------------------------------------------------------------------- /test/joker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/joker.js -------------------------------------------------------------------------------- /test/paigowpokerfullhands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/paigowpokerfullhands.js -------------------------------------------------------------------------------- /test/standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/standard.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/test.js -------------------------------------------------------------------------------- /test/threecard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfire/pokersolver/HEAD/test/threecard.js --------------------------------------------------------------------------------