Socket
Socket
Sign inDemoInstall

deckofcards

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deckofcards

a standard deck of playing cards


Version published
Maintainers
1
Created
Source

deckofcards

A simple implementation of a deck of playing cards.

API

Card

Cards are a combination of a rank (2, 3, 4, 5, 6, 7, 8, 9, T (Ten), J (Jack), Q (Queen), K (King), A (Ace)) and a suit (S (Spades), C (Clubs), H (Hearts), D (Diamonds)).

constructor(rank, suit)

Accepts a rank (e.g. 4) and a suit (e.g. C). Will throw on invalid input.

constructor(rankAndSuit)

Accepts a rank and a suit string (e.g. 4C). Will throw on invalid input.

constructor(Card)

Copy constructor. Accepts a Card. Will throw on invalid input.

static parse(s)

Parses a card string (e.g. 4C) and returns a new Card.

static stringify(c)

Returns a string representation of the card (e.g. KH).

toString()

Returns a string representation of the card (e.g. KH).

valueOf()

Returns a string representation of the card (e.g. KH).

inspect()

Returns a string representation of the card (e.g. KH).

ranks[]

An array of valid ranks.

suits[]

An array of valid suits.

Deck

A Deck is just a set of 52 unique cards made by combining all legal suits and ranks.

constructor()

Initializes a new shuffled deck of cards.

shuffle()

Randomizes the order of the cards.

draw()

Returns the next card from the deck.

reset()

Puts the dealt cards back in the deck and performs a shuffle.

toString()

Returns a string representation of the deck.

Testing

npm test

License

See LICENSE.md

Keywords

FAQs

Package last updated on 18 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc