(threadID: string)
| 139 | const idSchemaRegExp: RegExp = new RegExp(`^${idSchemaRegex}$`); |
| 140 | |
| 141 | function isKeyserverThreadID(threadID: string): boolean { |
| 142 | return ( |
| 143 | idSchemaRegExp.test(threadID) && |
| 144 | !thickIDRegExp.test(threadID) && |
| 145 | !farcasterThreadIDRegExp.test(threadID) |
| 146 | ); |
| 147 | } |
| 148 | |
| 149 | const pendingSidebarURLPrefix = 'sidebar'; |
| 150 | const pendingThickSidebarURLPrefix = 'dm_sidebar'; |
no outgoing calls
no test coverage detected