Something went wrong. Try again.
Scratch space for learning atproto app development
Something went wrong. Try again.
133 B · 4 lines
TypeScript
at main
12345export function ifString<T>(value: T): (T & string) | undefined { if (typeof value === 'string') return value return undefined}