This repository has no description
1const APPROVED_HANDLES = new Set([
2 'wesleyfinck.org',
3 'ronentk.me',
4 'pouriade.com',
5 'bmann.ca',
6 'tynanpurdy.com',
7 'erlend.sh',
8 'tgoerke.bsky.social',
9 'psingletary.com',
10 'hilarybaumann.com',
11 'cosmik.network',
12 'semble.so',
13 'atproto.science',
14 'chrisshank.com',
15 'jasmine-pyz.bsky.social',
16 'alice.bsky.social',
17 'bob.bsky.social',
18]);
19
20export function isApprovedHandle(handle: string | undefined | null): boolean {
21 if (!handle) return false;
22 return APPROVED_HANDLES.has(handle);
23}