Convert first character in a string to uppercase, leaving the rest untouched.
the string to capitalize
the string with the first character capitalized
import { capitalize } from "@trashpanda001/helpers/string"capitalize("hello, world.")// "Hello, world." Copy
import { capitalize } from "@trashpanda001/helpers/string"capitalize("hello, world.")// "Hello, world."
Convert first character in a string to uppercase, leaving the rest untouched.