From a8b26d72c514444e699e5dd99a38405c6a2b738a Mon Sep 17 00:00:00 2001 From: James M Snell Date: Thu, 4 Jun 2020 11:45:42 -0700 Subject: [PATCH] lib: unflag AbortController It's still experimental, but make the flag non-op Signed-off-by: James M Snell PR-URL: https://github.com/nodejs/node/pull/33527 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Matteo Collina Reviewed-By: Anna Henningsen --- doc/api/cli.md | 7 ++++++- doc/api/globals.md | 2 -- doc/node.1 | 3 --- lib/internal/bootstrap/node.js | 7 +++++++ lib/internal/bootstrap/pre_execution.js | 27 ------------------------- lib/internal/main/worker_thread.js | 2 -- src/node_options.cc | 6 ++---- src/node_options.h | 1 - test/parallel/test-abortcontroller.js | 2 +- 9 files changed, 16 insertions(+), 41 deletions(-) diff --git a/doc/api/cli.md b/doc/api/cli.md index 7e317c10c2518a..2056cbd84961e1 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -170,9 +170,14 @@ Currently, overriding `Error.prepareStackTrace` is ignored when the ### `--experimental-abortcontroller` -Enable experimental `AbortController` and `AbortSignal` support. +Experimental `AbortController` and `AbortSignal` support is enabled by default. +Use of this command line flag is no longer required. ### `--experimental-import-meta-resolve`