An open API service indexing awesome lists of open source software.

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.

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');
// -> FooBar

pascalize('john-smith');
// -> JohnSmith
```

## License

MIT © [Vu Tran](https://github.com/vutran/)