Skip to content

Instantly share code, notes, and snippets.

@KATT
Last active December 3, 2019 02:18
Show Gist options
  • Save KATT/7765fa1bd61975776761584f5b0c5068 to your computer and use it in GitHub Desktop.
Save KATT/7765fa1bd61975776761584f5b0c5068 to your computer and use it in GitHub Desktop.
type Maybe<T> = T | null | undefined
function defaultValue<T>(value: Maybe<T>, fallback: T): T {
return value ?? fallback
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment