Created
June 1, 2020 14:08
-
-
Save leonardokl/1ee2a8913a80f5665643d90c9e38c932 to your computer and use it in GitHub Desktop.
TypeScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function isDefined<TValue>(value: TValue | undefined): value is TValue { | |
return typeof value !== 'undefined'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment