1.0.0 • Published 7 years ago

test-card v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

test-card Build Status

Credit, Debit and Prepaid cards for testing.

Install

$ npm install --save test-card

Usage

const testCard = require('test-card');

testCard('visa');
//=> '4242424242424242'

testCard('meow');
//=> null

testCard(123);
//=> 'Expected a string, got number'

API

testCard(cardName)

cardName

Type: string

On of the below:

[ 'visa',
  'visa-debit',
  'mastercard',
  'mastercard-debit',
  'mastercard-prepaid',
  'american-express',
  'discover',
  'diners-club',
  'jcb' ]

P.S:

  • Expiry date for these cards must be some day in the future.

  • Any random CVC number.

  • Sample cards are from stripe docs.

License

MIT © Hemanth.HM