(base, positive, negative, dynamic)
| 2258 | } |
| 2259 | exports.convertPatternGroupsToTasks = convertPatternGroupsToTasks; |
| 2260 | function convertPatternGroupToTask(base, positive, negative, dynamic) { |
| 2261 | return { |
| 2262 | dynamic, |
| 2263 | positive, |
| 2264 | negative, |
| 2265 | base, |
| 2266 | patterns: [].concat(positive, negative.map(utils.pattern.convertToNegativePattern)) |
| 2267 | }; |
| 2268 | } |
| 2269 | exports.convertPatternGroupToTask = convertPatternGroupToTask; |
| 2270 | |
| 2271 |
no test coverage detected