cfonts
Version:
Sexy ANSI fonts for the console
11 lines (10 loc) • 344 B
TypeScript
/**
* Upper case the first character of an input string.
*
* @author https://github.com/blakeembrey/change-case/tree/master/packages/upper-case-first
*
* @param {string} input - A string to be converted
*
* @return {string} - A string with the first letter in upper case
*/
export function UpperCaseFirst(input: string): string;