Skip to content

Capitalize

capitalize is a function capitalize the first letter of a string.

Example

This function will change the first letter of a string to uppercase:

ts
import { capitalize } from "@titocandradev/neatcore";

const result = capitalize("hello");
// Hello