File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 8
8
"parserOptions" : {
9
9
"ecmaVersion" : 2020
10
10
},
11
- "globals" : {
12
- "BigInt" : true
13
- },
14
11
"rules" : {
15
12
"indent" : [
16
13
" error" ,
Original file line number Diff line number Diff line change @@ -8,17 +8,17 @@ function AddOnlySet(it) {
8
8
this . size = it . length ;
9
9
}
10
10
11
- AddOnlySet . prototype . add = function ( value ) {
11
+ AddOnlySet . prototype . add = function ( value ) {
12
12
this . set . add ( value ) ;
13
13
this . size = this . set . size ;
14
14
this . emitter . emit ( 'add' , value ) ;
15
15
} ;
16
16
17
- AddOnlySet . prototype . on = function ( name , listener ) {
17
+ AddOnlySet . prototype . on = function ( name , listener ) {
18
18
this . emitter . on ( name , listener ) ;
19
19
} ;
20
20
21
- AddOnlySet . prototype . toString = function ( ) {
21
+ AddOnlySet . prototype . toString = function ( ) {
22
22
return [ ...this . set . values ( ) ] . join ( ) ;
23
23
} ;
24
24
You can’t perform that action at this time.
0 commit comments