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
12 lines (11 loc) • 584 B
JavaScript
/**
* Namespace for standards-related utilities.
* @namespace commons.standards
* @memberof axe
*/
export { default as getAriaRolesByType } from './get-aria-roles-by-type';
export { default as getAriaRolesSupportingNameFromContent } from './get-aria-roles-supporting-name-from-content';
export { default as getGlobalAriaAttrs } from './get-global-aria-attrs';
export { default as getElementSpec } from './get-element-spec';
export { default as getElementsByContentType } from './get-elements-by-content-type';
export { default as implicitHtmlRoles } from './implicit-html-roles';