From: Carl Worth Date: Sun, 14 Jun 2020 21:55:12 +0000 (-0700) Subject: Fix game-state object to include players judging and answering X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=c748592a7db27adebd48b45970b5f0ffbedb3300;hp=c748592a7db27adebd48b45970b5f0ffbedb3300;p=lmno-server Fix game-state object to include players judging and answering Previously, these were always appearing as empty objects in the JSON results that we streamed from the server in the game-state object because JSON.stringify doesn't natively know how to serialize a Set object. Here, we provide a replacer function that serializes a Set object as an array. ---