mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-01-01 10:32:09 +01:00
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
function titleCase(input) {
|
|
if (!input) {
|
|
return '';
|
|
}
|
|
|
|
return input.replace(/\b\w+/g, (match) => {
|
|
return match.charAt(0).toUpperCase() + match.substr(1).toLowerCase();
|
|
});
|
|
}
|
|
|
|
export default titleCase;
|