(scope, lib)
| 180 | return defaultModule ? new Set([defaultModule]) : null; |
| 181 | } |
| 182 | function inScope(scope, lib) { |
| 183 | if (!scope) return true; |
| 184 | if (!lib) return false; |
| 185 | for (const s of scope) if (lib.includes(s)) return true; |
| 186 | return false; |
| 187 | } |
| 188 | |
| 189 | function eventsConfig() { |
| 190 | const t = CONFIG.trace; |