UNPKG

@ou-imdt/utils

Version:

Utility library for interactive media development

8 lines 291 B
/** * Capitalizes the first letter of the given string. * @param {string} string - The string to capitalize. * @returns {string} The string with the first letter capitalized. */ export default function capFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); }