Skip to content

Commit 412486f

Browse files
committed
src: unflag --experimental-webstorage by default
1 parent c922bd8 commit 412486f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/node_options.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,8 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
456456
AddOption("--experimental-webstorage",
457457
"experimental Web Storage API",
458458
&EnvironmentOptions::experimental_webstorage,
459-
kAllowedInEnvvar);
459+
kAllowedInEnvvar,
460+
true);
460461
AddOption("--localstorage-file",
461462
"file used to persist localStorage data",
462463
&EnvironmentOptions::localstorage_file,

src/node_options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class EnvironmentOptions : public Options {
126126
bool experimental_fetch = true;
127127
bool experimental_websocket = true;
128128
bool experimental_sqlite = true;
129-
bool experimental_webstorage = false;
129+
bool experimental_webstorage = true;
130130
#ifdef NODE_OPENSSL_HAS_QUIC
131131
bool experimental_quic = false;
132132
#endif

0 commit comments

Comments
 (0)