1.0.2 • Published 5 years ago

cribbage-calculator v1.0.2

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

Cribbage calculator

Cribbage calculator will caculate the score of any cribbage hand.

How to use

npm install cribbage-calculator
  • function takes an array of cards as the argument
  • the first 4 cards in the array will be the hand, the 5th will be the knob
  • cards should be entered in for format 'value-suit',
  • a = ace, j = jack, q = queen, and k = king
  • h = hearts, d = dimonds, c = clubs, and s = spades

Example:

  const calculator = require('cribbage-calculator')

  console.log(calculator(['2h', '10c', '3s', 'qd', 'ah']))

  // returns 7