Files
pepperplus-ui/src/utils/capitalize.ts
Twirre Meulenbelt 6d5f1e33ef feat: add experiment logs to the monitoring page
ref: N25B-401
2026-01-19 12:57:01 +01:00

4 lines
91 B
TypeScript

export default function (s: string) {
return s.charAt(0).toUpperCase() + s.slice(1);
}