aboutsummaryrefslogtreecommitdiff
path: root/draughts
diff options
context:
space:
mode:
authorThomas Voss <thomasvoss@live.com> 2022-01-13 22:41:34 +0100
committerThomas Voss <thomasvoss@live.com> 2022-01-13 22:41:34 +0100
commite448ee4e94fcd18bfca31fbc89723e394a964b54 (patch)
treef5d8172e7396692eb3f344bdd2155f91faffaab5 /draughts
parent3fb39ddd8fcbe0d61c6f29d08649fd4b2e18f84a (diff)
Fix indentation
Diffstat (limited to 'draughts')
-rw-r--r--draughts/statTracker.js9
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;