版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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