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