Files
writer-helpers-mcp/services/randomWord.ts

6 lines
175 B
TypeScript

import fishersYatesShuffle from "@/helpers/shuffle"
export const getRandomWords = (words: string[], count: number) => {
return fishersYatesShuffle(words).slice(0, count)
}