()
| 423 | } |
| 424 | |
| 425 | function setupVfs() { |
| 426 | if (!getOptionValue('--experimental-vfs')) { |
| 427 | return; |
| 428 | } |
| 429 | |
| 430 | const { BuiltinModule } = require('internal/bootstrap/realm'); |
| 431 | BuiltinModule.allowRequireByUsers('vfs'); |
| 432 | } |
| 433 | |
| 434 | function setupWebStorage() { |
| 435 | if (getEmbedderOptions().noBrowserGlobals || |
no test coverage detected