Skip to content

Instantly share code, notes, and snippets.

@danyeah
Created August 18, 2015 07:39
Show Gist options
  • Save danyeah/f76cb8103529882a4d4d to your computer and use it in GitHub Desktop.
Save danyeah/f76cb8103529882a4d4d to your computer and use it in GitHub Desktop.
// Log all the methods of yourFunction object
console.log(Object.getOwnPropertyNames(yourFunction).filter(function (p) {
return typeof yourFunction[p] === 'function';
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment