Skip to content

Instantly share code, notes, and snippets.

@eisisig
Created October 23, 2015 03:06
Show Gist options
  • Save eisisig/2fb59cd62a901cec16d8 to your computer and use it in GitHub Desktop.
Save eisisig/2fb59cd62a901cec16d8 to your computer and use it in GitHub Desktop.
const getArgs = ( func ) => {
const args = func.toString().match(/function\s.*?\(([^)]*)\)/)[1];
return args.split(",").map(( arg ) => arg.replace(/\/\*.*\*\//, "").trim()).filter(( arg ) => arg);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment