(matchers)
| 13137 | |
| 13138 | |
| 13139 | function adjustMatchers(matchers) { |
| 13140 | var adjustedMatchers = []; |
| 13141 | if (isDefined(matchers)) { |
| 13142 | forEach(matchers, function(matcher) { |
| 13143 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 13144 | }); |
| 13145 | } |
| 13146 | return adjustedMatchers; |
| 13147 | } |
| 13148 | |
| 13149 | |
| 13150 | /** |
no test coverage detected