(matchers)
| 15093 | |
| 15094 | |
| 15095 | function adjustMatchers(matchers) { |
| 15096 | var adjustedMatchers = []; |
| 15097 | if (isDefined(matchers)) { |
| 15098 | forEach(matchers, function(matcher) { |
| 15099 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 15100 | }); |
| 15101 | } |
| 15102 | return adjustedMatchers; |
| 15103 | } |
| 15104 | |
| 15105 | |
| 15106 | /** |
no test coverage detected