UNPKG

hd-utils

Version:

A handy utils for modern JS developers

6 lines (5 loc) 202 B
/** * @description will return the passed string with the first character capitalized. * @example capitalize("javascript") // "Javascript" */ export default function capitalize(str: string): string;