(matchers)
| 19404 | |
| 19405 | |
| 19406 | function adjustMatchers(matchers) { |
| 19407 | var adjustedMatchers = []; |
| 19408 | if (isDefined(matchers)) { |
| 19409 | forEach(matchers, function(matcher) { |
| 19410 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 19411 | }); |
| 19412 | } |
| 19413 | return adjustedMatchers; |
| 19414 | } |
| 19415 | |
| 19416 | |
| 19417 | /** |
no test coverage detected