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
/
json
/
index.ts
8 lines
(6 loc)
•
201 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ parseJsonHand }
from
'./parse'
;
import
{ stringifyJsonHand }
from
'./stringify'
;
export
namespace
JSON
{
export
const
parse = parseJsonHand;
export
const
stringify = stringifyJsonHand; }