fDist Node module that generates the frequency distribution from an array of data Usage: var sample = require('fdist'); sample.fDist(['orange','pear','banana','banana','apple','orange','pear','banana']) { orange: 2, pear: 2, banana: 3, apple: 1 }