Skip to content

Commit

Permalink
perf: optimize code even further
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusU committed Oct 20, 2023
1 parent 13e4c44 commit 336ff26
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
'use strict'

module.exports = (function (array) {
return function luhn (number) {
if (typeof number !== 'string') throw new TypeError('Expected string input')
if (!number) return false
let length = number.length
let bit = 1
let sum = 0
let value
const lookup = [0, 2, 4, 6, 8, 1, 3, 5, 7, 9]

while (length) {
value = parseInt(number.charAt(--length), 10)
bit ^= 1
sum += bit ? array[value] : value
}
module.exports = function luhn (number) {
if (typeof number !== 'string') throw new TypeError('Expected string input')
if (!number) return false

return sum % 10 === 0
let index = number.length
let x2 = true
let sum = 0

while (index) {
const value = number.charCodeAt(--index) - 48
if (value < 0 || value > 9) return false

x2 = !x2
sum += x2 ? lookup[value] : value
}
}([0, 2, 4, 6, 8, 1, 3, 5, 7, 9]))

return sum % 10 === 0
}

0 comments on commit 336ff26

Please sign in to comment.