npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

titleize

4.0.0

@sindresorhus

npmHomeRepoSnykSocket
Downloads:133962045
$ npm install titleize
DailyWeeklyMonthlyYearly

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