deck-creator
v1.0.2
Published
This is a simple JavaScript script that allows you to create a standard deck of playing cards and provides functionality to shuffle it. The deck includes all four suits: Hearts, Diamonds, Clubs, and Spades, with the standard 13 ranks per suit.
Readme
deck-creator
This is a simple JavaScript script that allows you to create a standard deck of playing cards and provides functionality to shuffle it. The deck includes all four suits: Hearts, Diamonds, Clubs, and Spades, with the standard 13 ranks per suit.
Installazione
npm install deck-creator
const { createDeck, shuffle } = require("deck-creator");
const deck = createDeck();
console.log(deck);
const shuffledDeck = shuffle(deck);
console.log(shuffledDeck);