Skip to content

Instantly share code, notes, and snippets.

@powerc9000
Created May 18, 2019 21:01
Show Gist options
  • Save powerc9000/770188ced50e85768f4b5cdefa6dd764 to your computer and use it in GitHub Desktop.
Save powerc9000/770188ced50e85768f4b5cdefa6dd764 to your computer and use it in GitHub Desktop.
function isEnabled(flagName){
const flag = flags.find((flag)=>{
return flag.name === flagName
})
//If the flag doesnt exist it sure isn't enabled
if(!flag){
return false
}
return flag.enabled;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment