1
0
mirror of synced 2025-12-21 19:06:49 -05:00
Files
docs/components/lib/ExcludesNull.tsx
Mike Surowiec da2384c7a5 cleanup for PR
2021-05-07 08:47:22 -07:00

4 lines
77 B
TypeScript

export function ExcludesNull<T>(x: T | null): x is T {
return x !== null
}