## `@plexis/toTitle`

Converts a string to a title, capitalizes the first letter of each word.

**Installation**
`npm i @plexis/to-title`

**Usage**

```javascript
import toTitle from '@plexis/to-title';

toTitle('this is cool mate'); // returns 'This Is Cool Mate'
```

**Aliases**

```javascript
import {toTitle} from 'plexis';
import {titleize} from 'plexis';
```
