Created
April 1, 2026 20:15
-
-
Save KonnorRogers/2fcaf6744c4a10c48aadd619c1d180f9 to your computer and use it in GitHub Desktop.
Fix all your environment variable woes
This file contains hidden or 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
| 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