Radarr/frontend/src/Utilities/String/titleCase.js
Mark McDowall 5316382113 New: Natural Sorting Manual Import Relative Paths
(cherry picked from commit bdd5865876796bc203c8117418a5389afc8b5f11)
2022-10-18 21:31:07 -05:00

13 lines
241 B
JavaScript

const regex = /\b\w+/g;
function titleCase(input) {
if (!input) {
return '';
}
return input.replace(regex, (match) => {
return match.charAt(0).toUpperCase() + match.substr(1).toLowerCase();
});
}
export default titleCase;