Skip to content

Instantly share code, notes, and snippets.

@npgenx
Created October 10, 2019 03:16
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 npgenx/0380829c97948b74459653dc5d8a9ea8 to your computer and use it in GitHub Desktop.
Save npgenx/0380829c97948b74459653dc5d8a9ea8 to your computer and use it in GitHub Desktop.
js: Get methods of a javascript object
getMethods = (obj) => Object.getOwnPropertyNames(obj).filter(item => typeof obj[item] === 'function')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment