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

32 lines (28 loc) 616 B
/* global commons */ /*eslint no-unused-vars: 0*/ /** * Namespace for axe common methods. * @namespace commons * @memberof axe */ import * as aria from './aria'; import * as color from './color'; import * as dom from './dom'; import * as forms from './forms'; import matches from './matches'; import * as standards from './standards'; import * as table from './table'; import * as text from './text'; import * as utils from '../core/utils'; var commons = { aria, color, dom, forms, matches, standards, table, text, utils }; export { aria, color, dom, forms, matches, standards, table, text, utils };