Create method to convert Game objects to JSON

This commit is contained in:
Oliver-Akins 2020-09-29 22:58:11 -06:00
parent c2e28ce14b
commit cb492fd275

View file

@ -28,4 +28,11 @@ class Game {
};
return `Game(code=${this.code},players=${players.join(',')})`;
};
public toJSON(): string {
return JSON.stringify({
code: this.code,
players: this.#_players,
}, undefined, `\t`)
};
};