Reports whether the received value is a valid credit card number and is a VISA card
Copy import isVISA from 'deep-waters/credit-cards/isVisa';
isVISA(4286124395547263); // VISA β true
isVISA(5276023546902691); // Mastercard β false
isVISA(6011583945260254); // Discover β false
isVISA(38716394960899); // Diners Club β false
isVISA(3528701379615495); // JCB β false
isVISA('6011-5839-4526-0254'); // Credit card format β false
isVISA("foo"); // β false
isVISA(undefined); // β false
Please note, isVisa assumes the receiving value is a number or a string without the usual dashes. It only evaluates the credit card number, not its format.