Skip to content

Instantly share code, notes, and snippets.

@lkacenja
Created January 22, 2016 15:57
Show Gist options
  • Save lkacenja/87d0f3c12347d8081e32 to your computer and use it in GitHub Desktop.
Save lkacenja/87d0f3c12347d8081e32 to your computer and use it in GitHub Desktop.
function parseBool(b) {
if (!!(b)) {
return b;
}
if (b == 'true') {
return true;
}
if (b == 'false' || b == 0 || b == null || b == undefined) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment