mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-16 23:41:43 +00:00
7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
export function mapEmptyStringToNull(input: string): string | null {
|
|
if (input === "") {
|
|
return null;
|
|
}
|
|
|
|
return input;
|
|
}
|