Files
SIGE-WEB-snapshot/wp-content/plugins/jetpack/extensions/blocks/ai-assistant/lib/utils/capitalize.ts

8 lines
167 B
TypeScript

export function capitalize( text: string ) {
if ( ! text || typeof text !== 'string' ) {
return '';
}
return text.charAt( 0 ).toUpperCase() + text.slice( 1 );
}