Make your string Title case
npm install @caeser1996/titlecase

Make your string Title case.
```
$ npm install @caeser1996/titlecase
`js
const to_title = require("@caeser1996/titlecase");
to_title("so much space!");
//=> "So Much Space!"
to_title(1337);
//=> Uncaught TypeError: Tiny wants a string!
// at tiny (
// at
``