| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 186ad24 commit dc19309
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -210,7 +210,7 @@ changes: | |||
| 210 | 210 | description: --experimental-abortcontroller is no longer required. | |
| 211 | 211 | --> | |
| 212 | 212 | ||
| 213 | - Experimental `AbortController` and `AbortSignal` support is enabled by default. | ||
| 213 | + `AbortController` and `AbortSignal` support is enabled by default. | ||
| 214 | 214 | Use of this command-line flag is no longer required. | |
| 215 | 215 | ||
| 216 | 216 | ### `--experimental-import-meta-resolve` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1137,14 +1137,15 @@ setMaxListeners(5, target, emitter); | |||
| 1137 | 1137 | <!-- YAML | |
| 1138 | 1138 | added: v14.5.0 | |
| 1139 | 1139 | changes: | |
| 1140 | + - version: REPLACEME | ||
| 1141 | + pr-url: https://github.com/nodejs/node/pull/35949 | ||
| 1142 | + description: No longer experimental. | ||
| 1140 | 1143 | - version: v15.0.0 | |
| 1141 | 1144 | pr-url: https://github.com/nodejs/node/pull/35496 | |
| 1142 | 1145 | description: | |
| 1143 | 1146 | The `EventTarget` and `Event` classes are now available as globals. | |
| 1144 | 1147 | --> | |
| 1145 | 1148 | ||
| 1146 | - > Stability: 1 - Experimental | ||
| 1147 | - | ||
| 1148 | 1149 | The `EventTarget` and `Event` objects are a Node.js-specific implementation | |
| 1149 | 1150 | of the [`EventTarget` Web API][] that are exposed by some Node.js core APIs. | |
| 1150 | 1151 | Neither the `EventTarget` nor `Event` classes are available for end | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -20,10 +20,12 @@ accessible. | |||
| 20 | 20 | ## Class: `AbortController` | |
| 21 | 21 | <!--YAML | |
| 22 | 22 | added: v15.0.0 | |
| 23 | + changes: | ||
| 24 | + - version: REPLACEME | ||
| 25 | + pr-url: https://github.com/nodejs/node/pull/35949 | ||
| 26 | + description: No longer experimental. | ||
| 23 | 27 | --> | |
| 24 | 28 | ||
| 25 | - > Stability: 1 - Experimental | ||
| 26 | - | ||
| 27 | 29 | <!-- type=global --> | |
| 28 | 30 | ||
| 29 | 31 | A utility class used to signal cancelation in selected `Promise`-based APIs. | |
@@ -172,24 +174,28 @@ Used to print to stdout and stderr. See the [`console`][] section. | |||
| 172 | 174 | ## `Event` | |
| 173 | 175 | <!-- YAML | |
| 174 | 176 | added: v15.0.0 | |
| 177 | + changes: | ||
| 178 | + - version: REPLACEME | ||
| 179 | + pr-url: https://github.com/nodejs/node/pull/35949 | ||
| 180 | + description: No longer experimental. | ||
| 175 | 181 | --> | |
| 176 | 182 | ||
| 177 | 183 | <!-- type=global --> | |
| 178 | 184 | ||
| 179 | - > Stability: 1 - Experimental | ||
| 180 | - | ||
| 181 | 185 | A browser-compatible implementation of the `Event` class. See | |
| 182 | 186 | [`EventTarget` and `Event` API][] for more details. | |
| 183 | 187 | ||
| 184 | 188 | ## `EventTarget` | |
| 185 | 189 | <!-- YAML | |
| 186 | 190 | added: v15.0.0 | |
| 191 | + changes: | ||
| 192 | + - version: REPLACEME | ||
| 193 | + pr-url: https://github.com/nodejs/node/pull/35949 | ||
| 194 | + description: No longer experimental. | ||
| 187 | 195 | --> | |
| 188 | 196 | ||
| 189 | 197 | <!-- type=global --> | |
| 190 | 198 | ||
| 191 | - > Stability: 1 - Experimental | ||
| 192 | - | ||
| 193 | 199 | A browser-compatible implementation of the `EventTarget` class. See | |
| 194 | 200 | [`EventTarget` and `Event` API][] for more details. | |
| 195 | 201 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -21,7 +21,6 @@ const { | |||
| 21 | 21 | } = require('internal/event_target'); | |
| 22 | 22 | const { | |
| 23 | 23 | customInspectSymbol, | |
| 24 | - emitExperimentalWarning | ||
| 25 | 24 | } = require('internal/util'); | |
| 26 | 25 | const { inspect } = require('internal/util/inspect'); | |
| 27 | 26 | ||
@@ -89,7 +88,6 @@ const kSignal = Symbol('signal'); | |||
| 89 | 88 | class AbortController { | |
| 90 | 89 | constructor() { | |
| 91 | 90 | this[kSignal] = createAbortSignal(); | |
| 92 | - emitExperimentalWarning('AbortController'); | ||
| 93 | 91 | } | |
| 94 | 92 | ||
| 95 | 93 | get signal() { return this[kSignal]; } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments