(...allowlist)
| 397 | knownGlobals.add(Worker); |
| 398 | |
| 399 | function allowGlobals(...allowlist) { |
| 400 | for (const val of allowlist) { |
| 401 | knownGlobals.add(val); |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | if (process.env.NODE_TEST_KNOWN_GLOBALS !== '0') { |
| 406 | if (process.env.NODE_TEST_KNOWN_GLOBALS) { |
no test coverage detected
searching dependent graphs…