(matchers)
| 19093 | |
| 19094 | |
| 19095 | function adjustMatchers(matchers) { |
| 19096 | var adjustedMatchers = []; |
| 19097 | if (isDefined(matchers)) { |
| 19098 | forEach(matchers, function(matcher) { |
| 19099 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 19100 | }); |
| 19101 | } |
| 19102 | return adjustedMatchers; |
| 19103 | } |
| 19104 | |
| 19105 | |
| 19106 | /** |
no test coverage detected