- Code Quality
- Performance
- Functionality
- User Experience
- Testing
- Documentation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
CardGroup, | |
OddsCalculator, | |
type Card as PokerToolsCard, | |
} from "poker-tools"; | |
// Готовая функция для перемешивания колоды | |
export function shuffle<T>(array: Array<T>) { | |
let currentIndex = array.length, | |
randomIndex; |