File size: 174 Bytes
fb38ec5
 
 
 
 
 
1
2
3
4
5
6
7
export function titleCase(input: string): string {
  if (!input || typeof input !== "string") {
    return "";
  }
  return input.charAt(0).toUpperCase() + input.slice(1);
}