Uppercase the first character of each word in a string
npm install ucwords



Uppercase the first character of each word in a string.
``javascript``
const ucwords = require('ucwords');
ucwords('hello world'); // 'Hello World'
Inspired by Jeffrey Way