Credit, Debit and Prepaid cards for testing.
$ npm install --save test-card
const testCard = require('test-card');
testCard('visa');
//=> '4242424242424242'
testCard('meow');
//=> null
testCard(123);
//=> 'Expected a string, got number'
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.
MIT © Hemanth.HM