UNPKG

census-js-pro

Version:

CensusJs is a solution to modern word-counting issues. In this initial release, it can count words in plain text, in further releases, it would extract text from a file and then process it. You should use CensusJs if you’re working with documents that wil

5 lines (4 loc) 169 B
const returnWordCount = require('./processors/wordcountCalculator'); module.exports.countWordsFromText = (text, parser) => { return returnWordCount(text, parser); }