fullHouseMadeFlopToRiverExactProbability
Exact full house+ by river.
Card lists use CardInput (string[] or packed Uint8Array). See Card notation.
fullHouseMadeFlopToRiverExactProbability(heroHoleCards: CardInput, flopThree: CardInput, knownDead: CardInput): number
Import
const poker = require('poker-calculations');
ESM (Node):
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const poker = require('poker-calculations');
When to use
Exact full house or better by the river.
How to use
const hole = ['Ah', 'Ad'];
const flop = ['Ac', '7d', '9c'];
const dead = [];
console.log(poker.fullHouseMadeFlopToRiverExactProbability(hole, flop, dead));