Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- /**
- * Upper case the first character of an input string.
- */
- export function upperCaseFirst(input) {
- return input.charAt(0).toUpperCase() + input.substr(1);
- }
- //# sourceMappingURL=index.js.map
|