mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-03 18:48:12 +08:00
12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
// convert a string into title case
|
|
const toTitleCase = (str) =>
|
|
str
|
|
.toLowerCase()
|
|
.split(' ')
|
|
.map((word) => word.replace(word[0], word[0].toUpperCase()))
|
|
.join(' ');
|
|
|
|
module.exports = {
|
|
toTitleCase,
|
|
};
|