Skip to content
Next Next commit
doc: make AsyncLocalStorage snapshot and bind APIs non-experimental
These have been stable for a while now
  • Loading branch information
jasnell committed Mar 16, 2025
commit a8c218c1f44f55b5a5e3f76f668962e23844f15f
12 changes: 8 additions & 4 deletions doc/api/async_context.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,12 @@ Creates a new instance of `AsyncLocalStorage`. Store is only provided within a
added:
- v19.8.0
- v18.16.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
Comment thread
jasnell marked this conversation as resolved.
Outdated
description: Marking the API stable.
-->

> Stability: 1 - Experimental

* `fn` {Function} The function to bind to the current execution context.
* Returns: {Function} A new function that calls `fn` within the captured
execution context.
Expand All @@ -160,10 +162,12 @@ Binds the given function to the current execution context.
added:
- v19.8.0
- v18.16.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
Comment thread
jasnell marked this conversation as resolved.
Outdated
description: Marking the API stable.
-->

> Stability: 1 - Experimental

* Returns: {Function} A new function with the signature
`(fn: (...args) : R, ...args) : R`.

Expand Down