(_)
| 52 | |
| 53 | function findProfilerCall(condition: ProfilerEvent | ((args: any[]) => boolean)) { |
| 54 | let predicate: (args: any[]) => boolean = (_) => true; |
| 55 | if (typeof condition !== 'function') { |
| 56 | predicate = (args: any[]) => args[0] === condition; |
| 57 | } else { |
no outgoing calls
no test coverage detected
searching dependent graphs…