JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2398766
  • Score
    100M100P100Q194453F
  • License MIT

Capitalize every word in a string: unicorn cake → Unicorn Cake

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 Build Status

Capitalize every word in a string: unicorn cakeUnicorn Cake

Install

$ npm install --save titleize

Usage

const titleize = require('titleize');

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

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

License

MIT © Sindre Sorhus