UNPKG

luhn-generator

Version:

A generator of numbers that passes the validation of Luhn algorithm or Luhn formula, also known as the 'modulus 10' or 'mod 10' algorithm

52 lines (42 loc) 1.03 kB
"use strict"; const CHARSET = ("abcdefghijklmnopqrstuvwxyz" + "ABCDEFGHIJKLMNOPQRSTUVWXYZ$_").split(""); module.exports = class Charset { constructor(shouldConsider) { this.shouldConsider = shouldConsider; this.chars = CHARSET.slice(); this.frequency = {}; this.chars.forEach(c => { this.frequency[c] = 0; }); this.finalized = false; } consider(str) { if (!this.shouldConsider) { return; } str.split("").forEach(c => { if (this.frequency[c] != null) { this.frequency[c]++; } }); } sort() { if (this.shouldConsider) { this.chars = this.chars.sort((a, b) => this.frequency[b] - this.frequency[a]); } this.finalized = true; } getIdentifier(num) { if (!this.finalized) { throw new Error("Should sort first"); } let ret = ""; num++; do { num--; ret += this.chars[num % this.chars.length]; num = Math.floor(num / this.chars.length); } while (num > 0); return ret; } };