UNPKG
@idealic/poker-engine
Version:
alpha (0.1.3-alpha)
beta (0.2.2-beta)
latest (1.1.0)
1.1.0
1.0.0
0.2.5
0.2.4
0.2.3
0.2.2-beta
0.2.1-beta
0.2.0-beta
0.1.5-beta
0.1.4-beta
0.1.3-alpha
0.1.2-alpha
0.1.1-alpha
0.1.0-alpha
Poker game engine and hand evaluator
@idealic/poker-engine
/
src
/
formats
/
pokerstars
/
index.ts
8 lines
(6 loc)
•
211 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ parseHand }
from
'./parse'
;
import
{ stringifyPokerstarsHand }
from
'./stringify'
;
export
namespace
Pokerstars
{
export
const
parse = parseHand;
export
const
stringify = stringifyPokerstarsHand; }