(matchers)
| 14864 | |
| 14865 | |
| 14866 | function adjustMatchers(matchers) { |
| 14867 | var adjustedMatchers = []; |
| 14868 | if (isDefined(matchers)) { |
| 14869 | forEach(matchers, function(matcher) { |
| 14870 | adjustedMatchers.push(adjustMatcher(matcher)); |
| 14871 | }); |
| 14872 | } |
| 14873 | return adjustedMatchers; |
| 14874 | } |
| 14875 | |
| 14876 | |
| 14877 | /** |
no test coverage detected