Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at cope-settings-sync 13 lines 296 B view raw
1import {forceLTR} from './bidi' 2 3export function sanitizePronouns( 4 pronouns: string, 5 forceLeftToRight = true, 6): string { 7 if (!pronouns || pronouns.trim() === '') { 8 return '' 9 } 10 11 const trimmed = pronouns.trim().toLowerCase() 12 return forceLeftToRight ? forceLTR(trimmed) : trimmed 13}