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