Created
January 16, 2017 21:18
-
-
Save AndersonFirmino/3ecf9ce79105e9909790ae585f530db4 to your computer and use it in GitHub Desktop.
funções de conveniência
This file contains 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
/* | |
* 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