same card on every draw
n7best opened this issue · comments
n7best commented
ran test on remote and local, the second card after shuffle with draw(2) or draw(3) is always 2 of club
var cards = require('cards');
// Create a new 52 card poker deck
var deck = new cards.PokerDeck();
// Shuffle the deck
deck.shuffleAll();
// Draw a card
var card = deck.draw(2);
console.log(card);