- Notifications
You must be signed in to change notification settings - Fork5
Convert a string to pascal case (upper camel case). Used by more than 8.7 million projects on GitHub! Please follow this library's author:https://github.com/jonschlinkert
License
jonschlinkert/pascalcase
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Convert a string to pascal case (upper camelcase).
Please consider following this project's author,Jon Schlinkert, and consider starring the project to show your ❤️ and support.
Install withnpm (requiresNode.js >=14):
$ npm install --save pascalcase
RequiresNode.js version >= 14.
importpascalcasefrom'pascalcase';// or the following if you preferimport{pascalcase}from'pascalcase';console.log(pascalcase('a'));//=> 'A'console.log(pascalcase('foo bar baz'));//=> 'FooBarBaz'console.log(pascalcase(' foo bar baz '));//=> 'FooBarBaz'console.log(pascalcase('foo_bar-baz'));//=> 'FooBarBaz'console.log(pascalcase('foo.bar.baz'));//=> 'FooBarBaz'console.log(pascalcase('foo/bar/baz'));//=> 'FooBarBaz'console.log(pascalcase('foo[bar)baz'));//=> 'FooBarBaz'console.log(pascalcase('#foo+bar*baz'));//=> 'FooBarBaz'console.log(pascalcase('$foo~bar`baz'));//=> 'FooBarBaz'console.log(pascalcase('_foo_bar-baz-'));//=> 'FooBarBaz'console.log(pascalcase('foo 2 bar 5 baz'));//=> 'Foo2Bar5Baz'console.log(pascalcase('foo2bar5baz'));//=> 'Foo2bar5baz'
If you wish to preserve upper case character sequences, you may pass an options object with thepreserveConsecutiveUppercase
option set totrue
:
console.log(pascalcase('The IRS Is Mean'));//=> 'TheIrsIsMeanconsole.log(pascalcase('The IRS Is Mean',{preserveConsecutiveUppercase:true}));//=> TheIRSIsMeanconsole.log(pascalcase('We saw a UFO'));//=> WeSawAUfoconsole.log(pascalcase('We saw a UFO',{preserveConsecutiveUppercase:true}));//=> WeSawAUFO
All options are passed tosindresorhus/camelcase, please visit that project to learn about all available options.
Contributing
Pull requests and stars are always welcome. For bugs and feature requests,please create an issue.
Running Tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install&& npmtest
Building docs
(This project's readme.md is generated byverb, please don't edit the readme directly. Any changes to the readme must be made in the.verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme&& verb
You might also be interested in these projects:
- ansi-colors: Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in…more |homepage
- justified: Wraps words to a specified length and justifies the text in each line. |homepage
- randomatic: Generate randomized strings of a specified length using simple character sequences. The original generate-password. |homepage
- word-wrap: Wrap words to a specified length. |homepage
Jon Schlinkert
Copyright © 2021,Jon Schlinkert.Released under theMIT License.
This file was generated byverb-generate-readme, v0.8.0, on December 29, 2021.
About
Convert a string to pascal case (upper camel case). Used by more than 8.7 million projects on GitHub! Please follow this library's author:https://github.com/jonschlinkert