ucwords
v1.0.5
Published
Uppercase the first character of each word in a string
Downloads
472
Maintainers
Readme
UCWORDS for javascript
Uppercase the first character of each word in a string.
const ucwords = require('ucwords');
ucwords('hello world'); // 'Hello World'
Inspired by Jeffrey Way