-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.js
More file actions
46 lines (43 loc) · 754 Bytes
/
index.js
File metadata and controls
46 lines (43 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* 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 math from './math';
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';
import * as a11yCommons from './a11yCommons';
const commons = {
aria,
color,
dom,
forms,
math,
matches,
standards,
table,
text,
utils
};
export {
aria,
color,
dom,
forms,
math,
matches,
standards,
table,
text,
utils,
a11yCommons
};