0.0.4 • Published 8 years ago

abcount v0.0.4

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

abcount

Curious how often you use a letter or word in a text? Now you can find out!

Usage:

var abcount = require('abcount')

//the filename: 'license'
//the word or letter to match: 'the'
//the number of occurences: result

abcount('license', 'the', function(result){
	console.log('the count is ' + result)
})