File size: 283 Bytes
0842d68 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | export function countWords(text: string): number {
if (!text || text.trim().length === 0) {
return 0;
}
// Remove extra whitespace and split by whitespace
const words = text
.trim()
.split(/\s+/)
.filter((word) => word.length > 0);
return words.length;
}
|