Skip to content

Instantly share code, notes, and snippets.

@AndersonFirmino
Created January 16, 2017 21:18
Show Gist options
  • Save AndersonFirmino/3ecf9ce79105e9909790ae585f530db4 to your computer and use it in GitHub Desktop.
Save AndersonFirmino/3ecf9ce79105e9909790ae585f530db4 to your computer and use it in GitHub Desktop.
funções de conveniência
/*
* str2bool
* args: strvalue (um valor boleano valido como string: "true"/"false"/"0"/"1")
* return bool
*/
function str2bool(strvalue){
return (strvalue && typeof strvalue == 'string') ? (strvalue.toLowerCase() == 'true' || strvalue == '1') : (strvalue == true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment