isVISA

isVISA :: a โ†’ Boolean

Reports whether the received value is a valid credit card number and is a VISA card

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.

Last updated