版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

7 řádky
197 B

  1. /**
  2. * Upper case the first character of an input string.
  3. */
  4. export function upperCaseFirst(input) {
  5. return input.charAt(0).toUpperCase() + input.substr(1);
  6. }
  7. //# sourceMappingURL=index.js.map