Skip to content

Capitalize every word in string: unicorn cake → Unicorn Cake

License

Notifications You must be signed in to change notification settings

sindresorhus/titleize

Repository files navigation

titleize Build Status

Capitalize every word in a string: unicorn cakeUnicorn Cake

Install

$ npm install --save titleize

Usage

var titleize = require('titleize');

titleize('foo bar');
//=> Foo Bar

titleize('foo-bar');
//=> Foo-Bar

License

MIT © Sindre Sorhus