(module, context)
| 552 | * @returns {CacheGroupSource[]} the matching cache groups |
| 553 | */ |
| 554 | const fn = (module, context) => { |
| 555 | /** @type {CacheGroupSource[]} */ |
| 556 | const results = []; |
| 557 | for (const fn of handlers) { |
| 558 | fn(module, context, results); |
| 559 | } |
| 560 | return results; |
| 561 | }; |
| 562 | return fn; |
| 563 | } |
| 564 | return () => null; |
no outgoing calls
no test coverage detected