(matchers)
| 16374 | |
| 16375 | |
| 16376 | function adjustMatchers(matchers) { |
| 16377 | var adjustedMatchers = []; |
| 16378 | if (isDefined(matchers)) { |
| 16379 | forEach(matchers, function(matcher) { |
| 16380 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 16381 | }); |
| 16382 | } |
| 16383 | return adjustedMatchers; |
| 16384 | } |
| 16385 | |
| 16386 | |
| 16387 | /** |
no test coverage detected