From bcd3927dfb59e975475bc88ac6d9cfa5480a4af4 Mon Sep 17 00:00:00 2001 From: Thomas Parslow Date: Thu, 4 Jul 2024 18:36:19 +0100 Subject: [PATCH] Update readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fc8a36e..cf0499c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Changing the title of the game on the admin page and starting the game again wil #### Runtime -Node `v16.12.0` with no context and strict mode enforced. +Node `v16.14.0` with no context and strict mode enforced. #### Submissions @@ -49,7 +49,7 @@ Players can submit updated solutions as often as they like on the submission pag - Your solution must be a single synchronous function named `play` (don't worry about exporting it) - Your code will be run in strict mode – use node's `--use_strict` flag to test your script -- All JavaScript language features available in Node.js `v16.12.0` are available, with game-specific exceptions +- All JavaScript language features available in Node.js `v16.14.0` are available, with game-specific exceptions - Scripts are timed-out and fail after 5 seconds of execution time -- Comments, line breaks and whitespace **do not count** towards your score +- Comments, line breaks and whitespace **do not count** towards your score (we run your code through jsmin 1.0.1 before taking the length) - The aim is to solve the problem with the shortest possible code (fewest "strokes")