Something went wrong. Try again.
because I got bored of customising my CV for every job
Something went wrong. Try again.
118 B · 2 lines
TypeScript
123export const stripNullable = <T>(value: T | null | undefined): value is T => value !== null && value !== undefined;