diff options
-rw-r--r-- | play.js | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,6 +1,6 @@ "use strict" -/* global CARDS, US_STATES, action_button, scroll_into_view, send_action, view */ +/* global CARDS, US_STATES, action_button, player, scroll_into_view, send_action, view */ const SUF = 0 const OPP = 1 @@ -601,9 +601,6 @@ function on_log(text) { // eslint-disable-line no-unused-vars return p } -const pluralize = (count, noun, suffix = 's') => - `${count} ${noun}${count !== 1 ? suffix : ''}`; - function support_info() { return `${view.support_buttons}\u{2b50} ${view.support_hand}\u{1f0cf}` } |