Custom string formatter that converts any string into [Title Case](http://www.grammar-monster.com/lessons/capital_letters_title_case.htm)
npm install @wbce-d9/format-titleCustom string formatter that converts any string into
Title Case for the rules
This package converts any string into title case. This means only using capital letters for the principal words.
Articles, conjunctions, and prepositions do not get capital letters unless they start or end the title
| input | output |
| ---------------------------- | ------------------------------- |
| snowWhiteAndTheSevenDwarfs | Snow White and the Seven Dwarfs |
| NewcastleUponTyne | Newcastle Upon Tyne |
| brighton_on_sea | Brighton on Sea |
| apple_releases_new_ipad | Apple Releases New iPad |
| 7-food-trends | 7 Food Trends |
> The package contains a list of words that use some sort of special casing, for example: McDonalds, iPhone, and
> YouTube.
``bash`
$ npm install @wbce-d9/format-title
The package by default converts camelCase, PascalCase, underscore, and "regular" sentences to
Title Case
`js
formatTitle(string, [separator]);
formatTitle('snowWhiteAndTheSevenDwarfs');
// => Snow White and the Seven Dwarfs
`
You can provide an optional separator regex as a second parameter to support splitting the string on different/\s|-|_/g
characters. By default, this regex is set to .
If your favorite specially cased word isn't being capitalized properly,
please open an issue or submit a pull request!
- NodeJS LTS
- pnpm 7.5.0 or newer
The following pnpm scripts are available:
- pnpm lint – Lint the code using Eslint / Prettierpnpm test
- – Run the unit tests
Make sure that both commands pass locally before creating a Pull Request.
_This applies to maintainers only_
1. Create a new version / tag by running pnpm version . Tip: use pnpm version patch|minor|major togit push && git push --tags`)
auto-bump the version number
1. Push the version commit / tag to GitHub (
The CI will automatically build and release to npm, and generate the release notes.