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

12 lines
219 B
JavaScript
Raw Normal View History

2017-09-04 02:20:56 +00:00
function titleCase(input) {
if (!input) {
return '';
}
return input.replace(/\w\S*/g, (match) => {
return match.charAt(0).toUpperCase() + match.substr(1).toLowerCase();
});
}
export default titleCase;