Files
RSSHub/lib/utils/common-utils.js
2019-06-12 11:09:27 +08:00

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