update is word in word list logic to include new valid guesses
This commit is contained in:
parent
519b67e660
commit
55b3da3d32
1 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,11 @@
|
||||||
import { WORDS } from "../constants/wordlist";
|
import { WORDS } from "../constants/wordlist";
|
||||||
|
import { VALIDGUESSES } from "../constants/validGuesses";
|
||||||
|
|
||||||
export const isWordInWordList = (word: string) => {
|
export const isWordInWordList = (word: string) => {
|
||||||
return WORDS.includes(word.toLowerCase());
|
return (
|
||||||
|
WORDS.includes(word.toLowerCase()) ||
|
||||||
|
VALIDGUESSES.includes(word.toLowerCase())
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const isWinningWord = (word: string) => {
|
export const isWinningWord = (word: string) => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue