(fn)
| 4339 | } |
| 4340 | |
| 4341 | function extractArgs(fn) { |
| 4342 | var fnText = stringifyFn(fn).replace(STRIP_COMMENTS, ''), |
| 4343 | args = fnText.match(ARROW_ARG) || fnText.match(FN_ARGS); |
| 4344 | return args; |
| 4345 | } |
| 4346 | |
| 4347 | function anonFn(fn) { |
| 4348 | // For anonymous functions, showing at the very least the function signature can help in |
no test coverage detected