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