Package Exports
- titleize
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (titleize) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
titleize 
Capitalize every word in a string:
unicorn cake→Unicorn Cake
Install
$ npm install titleizeUsage
const titleize = require('titleize');
titleize('foo bar');
//=> 'Foo Bar'
titleize('foo-bar');
//=> 'Foo-Bar'Related
- camelcase - Convert a dash/dot/underscore/space separated string to camelcase
License
MIT © Sindre Sorhus