(fn)
| 4274 | } |
| 4275 | |
| 4276 | function extractArgs(fn) { |
| 4277 | var fnText = stringifyFn(fn).replace(STRIP_COMMENTS, ''), |
| 4278 | args = fnText.match(ARROW_ARG) || fnText.match(FN_ARGS); |
| 4279 | return args; |
| 4280 | } |
| 4281 | |
| 4282 | function anonFn(fn) { |
| 4283 | // For anonymous functions, showing at the very least the function signature can help in |
no test coverage detected