Skip to content

Commit c7197db

Browse files
committed
Update eslint config
1 parent 236c56a commit c7197db

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.eslintrc.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
"parserOptions": {
99
"ecmaVersion": 2020
1010
},
11-
"globals": {
12-
"BigInt": true
13-
},
1411
"rules": {
1512
"indent": [
1613
"error",

JavaScript/8-compose-proto.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ function AddOnlySet(it) {
88
this.size = it.length;
99
}
1010

11-
AddOnlySet.prototype.add = function (value) {
11+
AddOnlySet.prototype.add = function(value) {
1212
this.set.add(value);
1313
this.size = this.set.size;
1414
this.emitter.emit('add', value);
1515
};
1616

17-
AddOnlySet.prototype.on = function (name, listener) {
17+
AddOnlySet.prototype.on = function(name, listener) {
1818
this.emitter.on(name, listener);
1919
};
2020

21-
AddOnlySet.prototype.toString = function () {
21+
AddOnlySet.prototype.toString = function() {
2222
return [...this.set.values()].join();
2323
};
2424

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy