Skip to content

Instantly share code, notes, and snippets.

@xulapp
Created April 5, 2010 13:03
Show Gist options
  • Save xulapp/356317 to your computer and use it in GitHub Desktop.
Save xulapp/356317 to your computer and use it in GitHub Desktop.
getFunctionName
function getFunctionName(fn) {
return fn.name || ('' + fn).replace(/^function|\s*\([\s\S]+|(?:\s*\/(?:\/.*|\*[\s\S]*?\*\/)\s*)*/g, '') || 'anonymous';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment