/**
* 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 defaultfunctioncapFirstLetter(string) {
returnstring.charAt(0).toUpperCase() + string.slice(1);
}