(matchers)
| 18549 | |
| 18550 | |
| 18551 | function adjustMatchers(matchers) { |
| 18552 | var adjustedMatchers = []; |
| 18553 | if (isDefined(matchers)) { |
| 18554 | forEach(matchers, function(matcher) { |
| 18555 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 18556 | }); |
| 18557 | } |
| 18558 | return adjustedMatchers; |
| 18559 | } |
| 18560 | |
| 18561 | |
| 18562 | /** |
no test coverage detected