Skip to content

Instantly share code, notes, and snippets.

@AndiSHFR
Created March 24, 2016 13:23
Show Gist options
  • Save AndiSHFR/cf7cb44807b94f5a4a5c to your computer and use it in GitHub Desktop.
Save AndiSHFR/cf7cb44807b94f5a4a5c to your computer and use it in GitHub Desktop.
Javascript: String.prototype._toBool
// We extend the string object with a little helper function
// to convert a boolean value from a string to bool.
// var flag = "true"._toBool
Object.defineProperty(String.prototype, "_toBool", {
get : function() {
return (/^(true|1)$/i).test(this);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment