Skip to content

Commit 99c18f4

Browse files
committed
buffer: graduate Blob from experimental
It's time. Signed-off-by: James M Snell <[email protected]> PR-URL: #41270 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Robert Nagy <[email protected]>
1 parent 9d6bd10 commit 99c18f4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/api/buffer.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -456,10 +456,12 @@ Additionally, the [`buf.values()`][], [`buf.keys()`][], and
456456
added:
457457
- v15.7.0
458458
- v14.18.0
459+
changes:
460+
- version: REPLACEME
461+
pr-url: https://github.com/nodejs/node/pull/00000
462+
description: No longer experimental.
459463
-->
460464

461-
> Stability: 1 - Experimental
462-
463465
A [`Blob`][] encapsulates immutable, raw data that can be safely shared across
464466
multiple worker threads.
465467

lib/internal/blob.js

-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ const {
4444
const {
4545
createDeferredPromise,
4646
customInspectSymbol: kInspect,
47-
emitExperimentalWarning,
4847
} = require('internal/util');
4948
const { inspect } = require('internal/util/inspect');
5049

@@ -134,7 +133,6 @@ class Blob {
134133
* @constructs {Blob}
135134
*/
136135
constructor(sources = [], options = {}) {
137-
emitExperimentalWarning('buffer.Blob');
138136
if (sources === null ||
139137
typeof sources[SymbolIterator] !== 'function' ||
140138
typeof sources === 'string') {

0 commit comments

Comments
 (0)