mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
4 lines
120 B
TypeScript
4 lines
120 B
TypeScript
export function capitalize(str: string): string {
|
|
return str.slice(0, 1).toUpperCase() + str.slice(1).toLowerCase()
|
|
}
|