Lidarr/frontend/src/Utilities/String/firstCharToUpper.js

10 lines
191 B
JavaScript

function firstCharToUpper(input) {
if (!input) {
return '';
}
return [].map.call(input, (char, i) => (i ? char : char.toUpperCase())).join('');
}
export default firstCharToUpper;