(matchers)
| 19984 | |
| 19985 | |
| 19986 | function adjustMatchers(matchers) { |
| 19987 | var adjustedMatchers = []; |
| 19988 | if (isDefined(matchers)) { |
| 19989 | forEach(matchers, function(matcher) { |
| 19990 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 19991 | }); |
| 19992 | } |
| 19993 | return adjustedMatchers; |
| 19994 | } |
| 19995 | |
| 19996 | |
| 19997 | /** |
no test coverage detected