(matchers)
| 16520 | |
| 16521 | |
| 16522 | function adjustMatchers(matchers) { |
| 16523 | var adjustedMatchers = []; |
| 16524 | if (isDefined(matchers)) { |
| 16525 | forEach(matchers, function(matcher) { |
| 16526 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 16527 | }); |
| 16528 | } |
| 16529 | return adjustedMatchers; |
| 16530 | } |
| 16531 | |
| 16532 | |
| 16533 | /** |
no test coverage detected