Skip to content

Instantly share code, notes, and snippets.

@SharmaTushar
Created April 23, 2022 04:29
Show Gist options
  • Save SharmaTushar/e31cc069c106d1e44d39893616517290 to your computer and use it in GitHub Desktop.
Save SharmaTushar/e31cc069c106d1e44d39893616517290 to your computer and use it in GitHub Desktop.
function isDefined<T>(value: T): value is Exclude<T, undefined> {
return value !== undefined
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment