Giter Club home page Giter Club logo

poker-cards's Introduction

Poker Cards

poker-cards is a module that seeks to provide an abstract deck of playing cards for bootstraping a game or algorithmic purpose.

Examples

Use prebuilt deck

import { orthodox } from "poker-cards";

class BlackJack {
  constructor() {
    this.deck = orthodox;
    // ...
  }
  // ...
}

Build your own deck

import { Orthodox, Full, Card, Deck, SUITS, RANKS } from "poker-cards";
class BlackJack {
  constructor() {
    this.deck = new Orthodox();
    this.deck = new Deck([
      new Card({ suit: SUITS.SPADE, rank: RANKS[1] }),
      ...
    ]);
  }
}

Console

orthodox.cards; // [Card 1 Spade, Card 1 Heart, ....]
[orthodox.length, full.length] // [52, 54], full deck contains Jokers
orthodox instanceOf Orthodox; // true
Deck.isPrototypeOf(Orthodox); // true

from Deck instances:

  • cards - cards in the current deck
  • length - length of cards in deck
  • shuffle()
  • reset() - reset mutations done to the deck
  • pullOneOut() - pop last card
  • placeInDeck(card) - push a card into deck
  • cut()
  • Array methods delegation: indexOf, map, forEach, reduce, filter, find

from Card instances:

  • suit - object
  • rank - object, A,2,3...K
  • isA({ suit, rank }) - return true if card matches

poker-cards's People

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.