We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The card start with 2221-2720 is not passing current checker. Can consider to update the utils.
private static boolean checkIfMasterCard(int size, String value) { int firstChars = Integer.parseInt(value.substring(0, 2)); int firstCharsRules2017 = Integer.parseInt(value.substring(0, 4)); if (size == 16 && ((firstChars >= 51 && firstChars <= 55) || (firstCharsRules2017 >= 2221 && firstChars <= 2720))) { return true; } else { return false; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The card start with 2221-2720 is not passing current checker.
Can consider to update the utils.
The text was updated successfully, but these errors were encountered: