A realtime multiplayer version of the boardgame Ricochet Robots
at master 123 B view raw
1export const capitalizeFirst = (value: string): string => { 2 return `${value[0]!.toUpperCase()}${value.substring(1)}`; 3};