diff options
-rw-r--r-- | draughts/statTracker.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/draughts/statTracker.js b/draughts/statTracker.js index 1f9a7b8..51ad34b 100644 --- a/draughts/statTracker.js +++ b/draughts/statTracker.js @@ -1,9 +1,8 @@ const gameStatus = { since: Date.now() /* since we keep it simple and in-memory, keep track of when this object was created */, minimumMoves: Infinity, - averageMoves: Infinity, - totalGames: 0 - }; + averageMoves: Infinity, + totalGames: 0 +} - module.exports = gameStatus; -
\ No newline at end of file +module.exports = gameStatus; |