API reference › @evolu/common › Type › camelCaseToKebabCase
function camelCaseToKebabCase(
value: string & Brand<"CamelCaseIdentifier">,
): string & Brand<"KebabCaseIdentifier">;
Defined in: packages/common/src/Type.ts:5825
Converts a CamelCaseIdentifier to a KebabCaseIdentifier.
Converts http2Port to http2-port. Use kebabCaseToCamelCase to
recover the original spelling.