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

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

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

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

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