UNPKG
nodewords
Version:
latest (1.3.2)
1.3.2
1.3.1
1.3.0
1.2.0
1.1.0
1.0.1
1.0.0
Command line word games
nodewords
/
src
/
games
/
hangman
/
hangman-constants.js
10 lines
(9 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module
.
exports
= { GAME_TITLE:
'HANGMAN'
, GAME_INFO:
'Solve the hangman puzzle:\n'
, UNHANDLED_OPTION:
'Oops! Unhandled option'
, INCORRECT_GUESS:
'\nINCORRECT! Unlucky, keep going\n'
, TOTAL_GUESSES:
11
, LETTER:
'letter'
, ANSWER:
'answer'
};