(matchers)
| 19369 | |
| 19370 | |
| 19371 | function adjustMatchers(matchers) { |
| 19372 | var adjustedMatchers = []; |
| 19373 | if (isDefined(matchers)) { |
| 19374 | forEach(matchers, function(matcher) { |
| 19375 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 19376 | }); |
| 19377 | } |
| 19378 | return adjustedMatchers; |
| 19379 | } |
| 19380 | |
| 19381 | |
| 19382 | /** |
no test coverage detected