I guess prettier says this, now.
Some checks failed
Build Tilde Friends / Build-All (push) Failing after 6m30s

This commit is contained in:
2024-08-28 20:24:26 -04:00
parent 2a5f71bd5d
commit 4af5e8ec42
2 changed files with 7 additions and 7 deletions

View File

@ -28,7 +28,10 @@ function global_settings_set(key, value) {
}
function title_case(name) {
return name.split('_').map(x => x.charAt(0).toUpperCase() + x.substring(1)).join(' ');
return name
.split('_')
.map((x) => x.charAt(0).toUpperCase() + x.substring(1))
.join(' ');
}
window.addEventListener('load', function () {