File tree Expand file tree Collapse file tree 10 files changed +14976
-1245
lines changed Expand file tree Collapse file tree 10 files changed +14976
-1245
lines changed Original file line number Diff line number Diff line change 5
5
6
6
env :
7
7
FORCE_COLOR : 2
8
- NODE : 14
8
+ NODE : 16
9
9
10
10
jobs :
11
11
browserstack :
Original file line number Diff line number Diff line change 8
8
9
9
env :
10
10
FORCE_COLOR : 2
11
- NODE : 14
11
+ NODE : 16
12
12
13
13
jobs :
14
14
bundlewatch :
Original file line number Diff line number Diff line change 8
8
9
9
env :
10
10
FORCE_COLOR : 2
11
- NODE : 14
11
+ NODE : 16
12
12
13
13
jobs :
14
14
css :
Original file line number Diff line number Diff line change 8
8
9
9
env :
10
10
FORCE_COLOR : 2
11
- NODE : 14
11
+ NODE : 16
12
12
13
13
jobs :
14
14
css :
Original file line number Diff line number Diff line change 8
8
9
9
env :
10
10
FORCE_COLOR : 2
11
- NODE : 14
11
+ NODE : 16
12
12
13
13
jobs :
14
14
docs :
Original file line number Diff line number Diff line change 40
40
41
41
- name : Run Coveralls
42
42
uses : coverallsapp/github-action@1.1.3
43
- if : matrix.node == 14
43
+ if : matrix.node == 16
44
44
with :
45
45
github-token : " ${{ secrets.GITHUB_TOKEN }}"
46
46
path-to-lcov : " ./js/coverage/lcov.info"
Original file line number Diff line number Diff line change 8
8
9
9
env :
10
10
FORCE_COLOR : 2
11
- NODE : 14
11
+ NODE : 16
12
12
13
13
jobs :
14
14
lint :
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ const Util = {
68
68
69
69
getUID ( prefix ) {
70
70
do {
71
+ // eslint-disable-next-line no-bitwise
71
72
prefix += ~ ~ ( Math . random ( ) * MAX_UID ) // "~~" acts like a faster Math.floor() here
72
73
} while ( document . getElementById ( prefix ) )
73
74
You can’t perform that action at this time.
0 commit comments