Select the types of activity you want to include in your feed.
1/** 2 * Normalize a string for comparison purposes 3 * 4 * @param str - The string to normalize 5 * @returns Normalized lowercase string 6 **/ 7export function normalize(str: string): string { 8 return str.toLowerCase().replace(/[._-]/g, ""); 9}