Created
December 10, 2013 21:47
-
-
Save d6u/7900833 to your computer and use it in GitHub Desktop.
JS Get Function Arguments' Name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var STRIP_COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg; | |
| function getParamNames(func) { | |
| var fnStr = func.toString().replace(STRIP_COMMENTS, ''); | |
| var result = fnStr.slice(fnStr.indexOf('(')+1, fnStr.indexOf(')')).match(/([^\s,]+)/g); | |
| if (result === null) result = []; | |
| return result; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment