Skip to content

Instantly share code, notes, and snippets.

@ernix
Created June 18, 2019 07:12
Show Gist options
  • Select an option

  • Save ernix/163981357fc14d75064948ddade24e29 to your computer and use it in GitHub Desktop.

Select an option

Save ernix/163981357fc14d75064948ddade24e29 to your computer and use it in GitHub Desktop.
function luhn(value) {
return value.split('').reduce(function (s, d, i) {
var n = (!(i & 1) + 1) * d;
if (n > 9) n -= 9;
return s + n;
}, 0) % 10 === 0;
}
console.log(luhn('1234567890123452'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment