index.js 625 B

12345678910111213141516171819202122232425262728293031
  1. /* global commons */
  2. /*eslint no-unused-vars: 0*/
  3. /**
  4. * Namespace for axe common methods.
  5. * @namespace commons
  6. * @memberof axe
  7. */
  8. import * as aria from './aria';
  9. import * as color from './color';
  10. import * as dom from './dom';
  11. import * as forms from './forms';
  12. import matches from './matches';
  13. import * as standards from './standards';
  14. import * as table from './table';
  15. import * as text from './text';
  16. import * as utils from '../core/utils';
  17. var commons = {
  18. aria,
  19. color,
  20. dom,
  21. forms,
  22. matches,
  23. standards,
  24. table,
  25. text,
  26. utils
  27. };
  28. export { aria, color, dom, forms, matches, standards, table, text, utils };