Appearance
capitalize is a function capitalize the first letter of a string.
capitalize
This function will change the first letter of a string to uppercase:
import { capitalize } from "@titocandradev/neatcore"; const result = capitalize("hello"); // Hello