character case transforms
npm install https://pkg.mkr.sx/casey/1.0.0.tgz
var casey = require('casey')
casey.camel('the quick brown fox jumps over the IBM computer')
> 'theQuickBrownFoxJumpsOverTheIBMComputer'
casey.kebab('the quick brown fox jumps over the IBM computer')
> 'the-quick-brown-fox-jumps-over-the-ibm-computer'
casey.pascal('the quick brown fox jumps over the IBM computer')
> 'TheQuickBrownFoxJumpsOverTheIBMComputer'
casey.snake('the quick brown fox jumps over the IBM computer')
> 'the_quick_brown_fox_jumps_over_the_ibm_computer'