@anasahmed700/word-counter
Version:
Word counter CLI
15 lines (11 loc) • 386 B
text/typescript
import inquirer from 'inquirer';
const answers: { Sentence: string } = await inquirer.prompt([
{
name: 'Sentence',
type: 'string',
message: "Enter the sentence to count the words"
}
])
const words = answers.Sentence.trim().split(' ');
console.log(`The sentence "${answers.Sentence}" has ${words.length} word(s).`);