Skip to content

Instantly share code, notes, and snippets.

@RodrigoNovais
Created April 19, 2020 18:37
Show Gist options
  • Save RodrigoNovais/278d5eaf52daf668700d3b2432027009 to your computer and use it in GitHub Desktop.
Save RodrigoNovais/278d5eaf52daf668700d3b2432027009 to your computer and use it in GitHub Desktop.
not empty value checker
export default <T>(value: T | null | undefined): value is T => !!value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment