[**@kazupon/jts-utils**](../../index.md)

---

[@kazupon/jts-utils](../../index.md) / [string](../index.md) / pascalize

# Function: pascalize()

```ts
function pascalize(value): string
```

pascalize string

## Parameters

| Parameter | Type     | Description    |
| --------- | -------- | -------------- |
| `value`   | `string` | a string value |

## Returns

`string`

pascalized string

## Example

```ts
import { pascalize } from '@kazupon/jts-utils'

const result = pascalize('hello world')
// result: 'HelloWorld'
```
