index.js 197 B

1234567
  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