[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) › pascalCaseToKebabCase

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

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

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

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