Skip to content

Instantly share code, notes, and snippets.

@briancavalier
Forked from scothis/gist:2884321
Created June 6, 2012 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save briancavalier/2884331 to your computer and use it in GitHub Desktop.
Save briancavalier/2884331 to your computer and use it in GitHub Desktop.
toHulkCase polyfill
define(function() {
String.prototype.toHulkCase = function(str) {
return 'HULK SMASH PUNY ' + str.toUpperCase() + ' ARRRRRRRRRRRRR';
}
});
@unscriptable
Copy link

HULK TAKE PUNY METHOD NAME. NO CARE IF YOUR METHOD IS SMASHD ARRRRRRRRRRRRR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment