Skip to content

Instantly share code, notes, and snippets.

@ValentaTomas
Last active April 26, 2022 13:35
Show Gist options
  • Save ValentaTomas/a21b08f23fa6331ffcce2c4afc83f654 to your computer and use it in GitHub Desktop.
Save ValentaTomas/a21b08f23fa6331ffcce2c4afc83f654 to your computer and use it in GitHub Desktop.
Filter null and undefined values out of an array
export function notEmpty<T>(value: T | null | undefined): value is T {
return value !== null && value !== undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment