index.js 341 B

1234567891011
  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