UNPKG
@botpoker/hand
Version:
latest (1.0.0)
1.0.0
Evaluate poker hold'em hands
github.com/brunoscopelliti/poker-has
brunoscopelliti/poker-has
@botpoker/hand
/
lib
/
domain
/
card-rank.js
6 lines
(3 loc)
•
137 B
JavaScript
View Raw
1
2
3
4
5
6
"use strict"
;
const
ranks =
Object
.
freeze
([
"2"
,
"3"
,
"4"
,
"5"
,
"6"
,
"7"
,
"8"
,
"9"
,
"10"
,
"J"
,
"Q"
,
"K"
,
"A"
]);
module
.
exports
= ranks;