Skip to content

Commit

Permalink
Fixed syntax error on old node version
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorMcKay committed Sep 3, 2024
1 parent 48d9615 commit 96d7f4b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion components/00-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ const IMPORTANT_BACKOFFS = [
*/
class SteamUserBase extends EventEmitter {
/** @var {{[name: string]: ExponentialBackoff}} */
_exponentialBackoffs = {};
_exponentialBackoffs;

constructor() {
super();

this._exponentialBackoffs = {};
}

/**
* @param {boolean} [isConnecting=false]
Expand Down

0 comments on commit 96d7f4b

Please sign in to comment.