[API reference](https://evolu.dev/docs/api-reference) › [@evolu/common](https://evolu.dev/docs/api-reference/common) › [Type](https://evolu.dev/docs/api-reference/common/Type) › kebabCaseToPascalCase

```ts
function kebabCaseToPascalCase(
  value: string & Brand<"KebabCaseIdentifier">,
): string & Brand<"PascalCaseIdentifier">;
```

Defined in: [packages/common/src/Type.ts:5963](https://github.com/evoluhq/evolu/blob/ecbac001e0c18bbc45b44715f49ecc3a768c5ec9/packages/common/src/Type.ts#L5963)

Converts a [KebabCaseIdentifier](https://evolu.dev/docs/api-reference/common/Type/variables/KebabCaseIdentifier) to a [PascalCaseIdentifier](https://evolu.dev/docs/api-reference/common/Type/variables/PascalCaseIdentifier).

Converts `http2-port` to `Http2Port`. Use [pascalCaseToKebabCase](https://evolu.dev/docs/api-reference/common/Type/functions/pascalCaseToKebabCase) to
recover the original spelling.