Select the types of activity you want to include in your feed.
1function toNormalCase(str: string | undefined) { 2 if (!str) return str; 3 return str 4 .replace(/[-_]/g, " ") 5 .split(" ") 6 .map((word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()) 7 .join(" "); 8} 9 10export default toNormalCase;