()
| 389 | } |
| 390 | |
| 391 | function setupSQLite() { |
| 392 | if (getOptionValue('--no-experimental-sqlite')) { |
| 393 | return; |
| 394 | } |
| 395 | |
| 396 | const { BuiltinModule } = require('internal/bootstrap/realm'); |
| 397 | BuiltinModule.allowRequireByUsers('sqlite'); |
| 398 | } |
| 399 | |
| 400 | function initializeConfigFileSupport() { |
| 401 | if (getOptionValue('--experimental-config-file')) { |
no test coverage detected
searching dependent graphs…