text-analyser
v1.0.61
Published
Text Analyser is lightweight library to analyse basic informations about text files like number of words, signs, spaces and empty lines.
Downloads
4
Maintainers
Readme
Text Analyser
What Text Analyser is :grey_question:
Text Analyser is lightweight library to analyse basic informations about text files like number of words, signs, spaces and empty lines.
Getting started :rocket:
Requirements
To use this module you need to install latest version of Node on your computer.
Installation :sparkles:
npm install text-analyser
:boom: Ready to use! :smiley:
How to use :grey_question:
import { analyse } from "text-analyser";
const pathToTxtFile = "txtFile.txt";
const informationsAboutTxtFile = analyse(pathToTxtFile);
That's all :sunglasses:
Variable informationsAboutTxtFile shoud look like this:
{ signs: X, spaces: X, words: X, lines: X, emptyLines: X, notEmptyLines: X }