Skip to content

Instantly share code, notes, and snippets.

@simonewebdesign
Created June 29, 2013 09:32
Show Gist options
  • Save simonewebdesign/5890526 to your computer and use it in GitHub Desktop.
Save simonewebdesign/5890526 to your computer and use it in GitHub Desktop.
Object.prototype.getName = function() {
var funcNameRegex = /function (.{1,})\(/;
var results = (funcNameRegex).exec((this).constructor.toString());
return (results && results.length > 1) ? results[1] : "";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment