ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 9 lines 239 B view raw
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}