API reference › @evolu/common › Type › constantCaseToSnakeCase
function constantCaseToSnakeCase(
value: string & Brand<"ConstantCaseIdentifier">,
): string & Brand<"SnakeCaseIdentifier">;
Defined in: packages/common/src/Type.ts:6057
Converts a ConstantCaseIdentifier to a SnakeCaseIdentifier.
Converts HTTP2_PORT to http2_port. Use snakeCaseToConstantCase to
recover the original spelling.