vibecraft / src /core /isGoodWord.ts
bmorphism's picture
Duplicate from bmorphism/vibecraft
a85305f
raw
history blame contribute delete
195 Bytes
import { getGoodWords } from "./goodWords"
//
export const isGoodWord = async (word: string) => {
const { goodWords } = await getGoodWords()
return goodWords.has(word.trim().toLowerCase())
}