1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00
Files
Sonarr/frontend/src/Utilities/String/titleCase.js
T
2022-04-09 21:19:17 -07:00

14 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;