.. | ||
index.d.ts | ||
index.js | ||
license | ||
package.json | ||
readme.md |
titleize
Capitalize every word in a string:
unicorn cake
→Unicorn Cake
Install
$ npm install titleize
Usage
import titleize from 'titleize';
titleize('foo bar');
//=> 'Foo Bar'
titleize('foo-bar');
//=> 'Foo-Bar'
Related
- camelcase - Convert a dash/dot/underscore/space separated string to camelcase