Spaces:
Paused
Paused
File size: 195 Bytes
7948ff4 |
1 2 3 4 5 6 7 |
import { getGoodWords } from "./goodWords"
//
export const isGoodWord = async (word: string) => {
const { goodWords } = await getGoodWords()
return goodWords.has(word.trim().toLowerCase())
} |