wordfrequenter

1.0.0 • Public • Published

WordFrequenter

JavaScript word frequency

CircleCI

Inspired by Python's DefaultDict, WordFrequenter provides an object to count the frequency of words

install

npm: npm i --save wordfrequenter

yarn: yarn add wordfrequenter

usage

const Freq = require('wordfrequenter')

const testWords = 'this is a cool test string this is cool cool cool'

const wf = new Freq(testWords.split(' '))

wf.set('string')
console.dir(wf.get('cool'))
console.dir(wf.list())

results in

Word { word: 'cool', count: 4 }
[ Word { word: 'a', count: 1 },
  Word { word: 'test', count: 1 },
  Word { word: 'this', count: 2 },
  Word { word: 'is', count: 2 },
  Word { word: 'string', count: 2 },
  Word { word: 'cool', count: 4 } ]

run test

npm test

Readme

Keywords

Package Sidebar

Install

npm i wordfrequenter

Weekly Downloads

3

Version

1.0.0

License

BSD

Unpacked Size

4.13 kB

Total Files

4

Last publish

Collaborators

  • jtruant