(fn)
| 3974 | } |
| 3975 | |
| 3976 | function extractArgs(fn) { |
| 3977 | var fnText = stringifyFn(fn).replace(STRIP_COMMENTS, ''), |
| 3978 | args = fnText.match(ARROW_ARG) || fnText.match(FN_ARGS); |
| 3979 | return args; |
| 3980 | } |
| 3981 | |
| 3982 | function anonFn(fn) { |
| 3983 | // For anonymous functions, showing at the very least the function signature can help in |
no test coverage detected