diff options
author | cjihrig <cjihrig@gmail.com> | 2019-12-14 11:14:02 -0500 |
---|---|---|
committer | Beth Griggs <Bethany.Griggs@uk.ibm.com> | 2020-02-06 02:49:30 +0000 |
commit | d31e6d9ee6231e5c5b9210f20d1c28c5e7080565 (patch) | |
tree | 335c79356c1ccb172419188a29292206e4589b72 /lib/internal/bootstrap/pre_execution.js | |
parent | 3872a020201712546ccc9d775066097eb7c3f4c5 (diff) | |
download | node-new-d31e6d9ee6231e5c5b9210f20d1c28c5e7080565.tar.gz |
wasi: require CLI flag to require() wasi module
This commit ensures that the WASI module cannot be require()'ed
without a CLI flag while the module is still experimental.
This fixes a regression from
https://github.com/nodejs/node/pull/30778.
PR-URL: https://github.com/nodejs/node/pull/30963
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Diffstat (limited to 'lib/internal/bootstrap/pre_execution.js')
-rw-r--r-- | lib/internal/bootstrap/pre_execution.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/internal/bootstrap/pre_execution.js b/lib/internal/bootstrap/pre_execution.js index 81002a3e3c..67fcfc8fbf 100644 --- a/lib/internal/bootstrap/pre_execution.js +++ b/lib/internal/bootstrap/pre_execution.js @@ -402,11 +402,10 @@ function initializePolicy() { } function initializeWASI() { - if (getOptionValue('--experimental-wasi-unstable-preview0')) { - const { NativeModule } = require('internal/bootstrap/loaders'); - const mod = NativeModule.map.get('wasi'); - mod.canBeRequiredByUsers = true; - } + const { NativeModule } = require('internal/bootstrap/loaders'); + const mod = NativeModule.map.get('wasi'); + mod.canBeRequiredByUsers = + getOptionValue('--experimental-wasi-unstable-preview0'); } function initializeCJSLoader() { |