(matchers)
| 20049 | |
| 20050 | |
| 20051 | function adjustMatchers(matchers) { |
| 20052 | var adjustedMatchers = []; |
| 20053 | if (isDefined(matchers)) { |
| 20054 | forEach(matchers, function(matcher) { |
| 20055 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 20056 | }); |
| 20057 | } |
| 20058 | return adjustedMatchers; |
| 20059 | } |
| 20060 | |
| 20061 | |
| 20062 | /** |
no test coverage detected