diff options
author | Thomas Voss <thomasvoss@live.com> | 2022-01-13 22:41:34 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2022-01-13 22:41:34 +0100 |
commit | e448ee4e94fcd18bfca31fbc89723e394a964b54 (patch) | |
tree | f5d8172e7396692eb3f344bdd2155f91faffaab5 | |
parent | 3fb39ddd8fcbe0d61c6f29d08649fd4b2e18f84a (diff) |
Fix indentation
-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; |