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
/
stringify.ts
6 lines
(4 loc)
•
133 B
text/typescript
View Raw
1
2
3
4
5
6
import
type
*
as
Poker
from
'../..'
;
export
function
stringifyJsonHand
(
hand
:
Poker
.
Hand
):
string
{
return
JSON
.
stringify
(hand); }