lint: Re-run eslint --fix

This commit is contained in:
Richard Hansen 2021-01-29 01:14:03 -05:00
parent b02ab430fe
commit c1ef12b8da
3 changed files with 3 additions and 3 deletions

View file

@ -113,7 +113,7 @@ const reconnectionTries = {
nextTry() {
// double the time to try to reconnect on every time reconnection fails
const nextCounterFactor = Math.pow(2, this.counter);
const nextCounterFactor = 2 ** this.counter;
this.counter++;
return nextCounterFactor;