Skip to main content

capitalize

A function that converts the first character of a string to uppercase.


Code

🔗 View source code


Interface

typescript
function capitalize<T extends string>(str: T): Capitalize<T>

Usage

typescript
import { capitalize } from '@modern-kit/utils';

capitalize('hello'); // 'Hello'
capitalize('123'); // '123'