API reference › @evolu/common › Type › constantCaseToCamelCase
function constantCaseToCamelCase(
value: string & Brand<"ConstantCaseIdentifier">,
): string & Brand<"CamelCaseIdentifier">;
Defined in: packages/common/src/Type.ts:6000
Converts a ConstantCaseIdentifier to a CamelCaseIdentifier.
Converts HTTP2_PORT to http2Port. Use camelCaseToConstantCase to
recover the original spelling.