版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

11 строки
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