JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2371250
  • Score
    100M100P100Q198291F
  • 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 titleize

Usage

const titleize = require('titleize');

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

titleize('foo-bar');
//=> 'Foo-Bar'
  • camelcase - Convert a dash/dot/underscore/space separated string to camelcase

License

MIT © Sindre Sorhus