Last active
January 15, 2020 18:28
-
-
Save swapnilmishra/dec37ee5a820de6cbca5 to your computer and use it in GitHub Desktop.
Javascript function to detect type of debit/credit card
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getCardType(cardNum) { | |
if(!luhnCheck(cardNum)){ | |
return ""; | |
} | |
var payCardType = ""; | |
var regexMap = [ | |
{regEx: /^4[0-9]{5}/ig,cardType: "VISA"}, | |
{regEx: /^5[1-5][0-9]{4}/ig,cardType: "MASTERCARD"}, | |
{regEx: /^3[47][0-9]{3}/ig,cardType: "AMEX"}, | |
{regEx: /^(5[06-8]\d{4}|6\d{5})/ig,cardType: "MAESTRO"} | |
]; | |
for (var j = 0; j < regexMap.length; j++) { | |
if (cardNum.match(regexMap[j].regEx)) { | |
payCardType = regexMap[j].cardType; | |
break; | |
} | |
} | |
if (cardNum.indexOf("50") === 0 || cardNum.indexOf("60") === 0 || cardNum.indexOf("65") === 0) { | |
var g = "508500-508999|606985-607984|608001-608500|652150-653149"; | |
var i = g.split("|"); | |
for (var d = 0; d < i.length; d++) { | |
var c = parseInt(i[d].split("-")[0], 10); | |
var f = parseInt(i[d].split("-")[1], 10); | |
if ((cardNum.substr(0, 6) >= c && cardNum.substr(0, 6) <= f) && cardNum.length >= 6) { | |
payCardType = "RUPAY"; | |
break; | |
} | |
} | |
} | |
return payCardType; | |
} | |
function luhnCheck(cardNum){ | |
// Luhn Check Code from https://gist.github.com/4075533 | |
// accept only digits, dashes or spaces | |
var numericDashRegex = /^[\d\-\s]+$/ | |
if (!numericDashRegex.test(cardNum)) return false; | |
// The Luhn Algorithm. It's so pretty. | |
var nCheck = 0, nDigit = 0, bEven = false; | |
var strippedField = cardNum.replace(/\D/g, ""); | |
for (var n = strippedField.length - 1; n >= 0; n--) { | |
var cDigit = strippedField.charAt(n); | |
nDigit = parseInt(cDigit, 10); | |
if (bEven) { | |
if ((nDigit *= 2) > 9) nDigit -= 9; | |
} | |
nCheck += nDigit; | |
bEven = !bEven; | |
} | |
return (nCheck % 10) === 0; | |
} |
Hey, check out this npm package : https://www.npmjs.com/package/cc-validate
This fail to detect mastercard when number is "2223000048400011"
This fail to detect mastercard when number is "2223000048400011"
I tried here and there were no issues detecting that number :
https://cc-validate.firebaseapp.com/
feel free to use this npm package : https://www.npmjs.com/package/cc-validate
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you please explain how can we get the Card Type Debit Or Credit using only card number?
Actually, I want to get the Card Type(Debit Or Credit) not the scheme of Card(VISA, Mastercard etc.) or brand.