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