(fn)
| 4229 | } |
| 4230 | |
| 4231 | function extractArgs(fn) { |
| 4232 | var fnText = stringifyFn(fn).replace(STRIP_COMMENTS, ''), |
| 4233 | args = fnText.match(ARROW_ARG) || fnText.match(FN_ARGS); |
| 4234 | return args; |
| 4235 | } |
| 4236 | |
| 4237 | function anonFn(fn) { |
| 4238 | // For anonymous functions, showing at the very least the function signature can help in |
no test coverage detected