test-card
v1.0.0
Published
Credit, Debit & Prepaid cards for testing.
Downloads
4
Readme
test-card
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