0.0.7 • Published 10 years ago

creditcard-generator v0.0.7

Weekly downloads
2,156
License
-
Repository
github
Last release
10 years ago

Credit Card generator

A node.js library for generating test credit card numbers. The card numbers are valid with respect to the Luhn algorithm (Mod 10 test). https://en.wikipedia.org/wiki/Luhn_algorithm

Interface

GenCC([Scheme], [numberOfCards]);

Usage

generator = require('./gencc.js')
generator.GenCC();
//Will return 1 MasterCardNumber
generator.GenCC("Amex");
//Will return 1 Amex number
generator.GenCC("VISA", 10);
//Will return 10 VisaCards numbers

Contributing

All contributions are welcome. Please supply tests.

LICENSE

GNU GPL https://gnu.org/licenses/gpl.html

Project forked from https://github.com/grahamking/darkcoding-credit-card