Skip to content

Instantly share code, notes, and snippets.

@williammustaffa
Last active May 15, 2019 18:52
Show Gist options
  • Save williammustaffa/3e48c5f794ab3ac5c50209940f4f1332 to your computer and use it in GitHub Desktop.
Save williammustaffa/3e48c5f794ab3ac5c50209940f4f1332 to your computer and use it in GitHub Desktop.
const getLastDigits = (cardNumber = '') => {
const match = cardNumber.match(/(?<lastDigits>\d{4})$/);
return match && match.groups.lastDigits || false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment