Convert strings of words into titlecase.
npm install string-titlecaseA reinvention of the titlecase method for the String prototype.
``javascript
require('string-titlecase')
'THE QUICK BROWN FOX'.titlecase() //=> "The Quick Brown Fox"
'the quick and brown fox'.titlecase() //=> "The Quick and Brown Fox"
'sHoRt AnD sToUt'.titlecase() //=> "Short and Stout"
``