1.0.0 • Published 7 years ago

wordfrequenter v1.0.0

Weekly downloads
132
License
BSD
Repository
github
Last release
7 years ago

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

1.0.0

7 years ago

0.0.5

7 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

12 years ago

0.0.1

12 years ago