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

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

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

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

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