Files
RSSHub/lib/utils/common-utils.js

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,
};