UNPKG

@anasahmed700/word-counter

Version:

Word counter CLI

12 lines (11 loc) 348 B
#! /usr/bin/env node import inquirer from 'inquirer'; const answers = 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).`);