Title-cases a string using Brett Terpstra's "titlecase" API.
npm install brettcase
A node.js helper library for accessing Brett Terpstra's [Titlecase API][api]. Just a bit of fun.
[api]: http://brettterpstra.com/titlecase/test
```
npm install brettcase
The Brettcase function returns a promise. Here's an example of how to use it.
`js``
var brettcase = require('brettcase');
brettcase('of mice and men').then(console.log); // Logs out "Of Mice and Men"