Skip to content

Instantly share code, notes, and snippets.

@ztrehagem
Created November 1, 2019 02:05
Show Gist options
  • Save ztrehagem/63e81d4c2d6ea5655ced7b83aa3a50a5 to your computer and use it in GitHub Desktop.
Save ztrehagem/63e81d4c2d6ea5655ced7b83aa3a50a5 to your computer and use it in GitHub Desktop.
function toBooleanWithDefault (value: unknown, def: boolean) {
return typeof value === 'boolean' ? value : def
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment