https://github.com/vutran/pascalize
Turns a string into PascalCase.
https://github.com/vutran/pascalize
convert helper pascalcase string string-manipulation
Last synced: 3 months ago
JSON representation
Turns a string into PascalCase.
- Host: GitHub
- URL: https://github.com/vutran/pascalize
- Owner: vutran
- License: mit
- Created: 2017-04-11T00:10:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-29T17:32:26.000Z (about 8 years ago)
- Last Synced: 2025-01-07T00:16:23.670Z (4 months ago)
- Topics: convert, helper, pascalcase, string, string-manipulation
- Language: JavaScript
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pascalize
> Turns a string into PascalCase.
# Install
```bash
$ npm i -S pascalize# or with yarn
$ yarn add pascalize
```## Usage
```js
import pascalize from 'pascalize';pascalize('foo bar');
// -> FooBarpascalize('john-smith');
// -> JohnSmith
```## License
MIT © [Vu Tran](https://github.com/vutran/)