版博士V2.0程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

11 wiersze
341 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.upperCaseFirst = void 0;
  4. /**
  5. * Upper case the first character of an input string.
  6. */
  7. function upperCaseFirst(input) {
  8. return input.charAt(0).toUpperCase() + input.substr(1);
  9. }
  10. exports.upperCaseFirst = upperCaseFirst;
  11. //# sourceMappingURL=index.js.map