poker-evaluator
Version:
A library to evaluate 3, 5, 6 or 7 card poker hands
16 lines • 359 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HAND_TYPES = void 0;
exports.HAND_TYPES = [
'invalid hand',
'high card',
'one pair',
'two pairs',
'three of a kind',
'straight',
'flush',
'full house',
'four of a kind',
'straight flush'
];
//# sourceMappingURL=hand-types.const.js.map