(fn)
| 4246 | } |
| 4247 | |
| 4248 | function extractArgs(fn) { |
| 4249 | var fnText = stringifyFn(fn).replace(STRIP_COMMENTS, ''), |
| 4250 | args = fnText.match(ARROW_ARG) || fnText.match(FN_ARGS); |
| 4251 | return args; |
| 4252 | } |
| 4253 | |
| 4254 | function anonFn(fn) { |
| 4255 | // For anonymous functions, showing at the very least the function signature can help in |
no test coverage detected