Skip to content

Instantly share code, notes, and snippets.

@KonnorRogers
Created April 1, 2026 20:15
Show Gist options
  • Select an option

  • Save KonnorRogers/2fcaf6744c4a10c48aadd619c1d180f9 to your computer and use it in GitHub Desktop.

Select an option

Save KonnorRogers/2fcaf6744c4a10c48aadd619c1d180f9 to your computer and use it in GitHub Desktop.
Fix all your environment variable woes
function boolify (str) {
const truthy = [
"y",
"yes",
"1",
"true",
"on"
]
if (str && truthy.includes(str.toLowerCase())) {
return true
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment