Repository URL to install this package:
|
Version:
1.1.31 ▾
|
/**
* function to return string with capital letter.
* @param {string} string the word string.
* @returns {string} with capital letter.
*/
export default function capitalizeFirstLetter( string ) {
return string.charAt( 0 ).toUpperCase() + string.slice( 1 );
}