(matchers)
| 13346 | |
| 13347 | |
| 13348 | function adjustMatchers(matchers) { |
| 13349 | var adjustedMatchers = []; |
| 13350 | if (isDefined(matchers)) { |
| 13351 | forEach(matchers, function(matcher) { |
| 13352 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 13353 | }); |
| 13354 | } |
| 13355 | return adjustedMatchers; |
| 13356 | } |
| 13357 | |
| 13358 | |
| 13359 | /** |
no test coverage detected