Skip to content

Commit ede37d6

Browse files
jasnelltargos
authored andcommitted
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 ea5dd36 commit ede37d6

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

doc/api/buffer.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -451,11 +451,15 @@ Additionally, the [`buf.values()`][], [`buf.keys()`][], and
451451
## Class: `Blob`
452452

453453
<!-- YAML
454-
added: v15.7.0
454+
added:
455+
- v15.7.0
456+
- v14.18.0
457+
changes:
458+
- version: REPLACEME
459+
pr-url: https://github.com/nodejs/node/pull/41270
460+
description: No longer experimental.
455461
-->
456462

457-
> Stability: 1 - Experimental
458-
459463
A [`Blob`][] encapsulates immutable, raw data that can be safely shared across
460464
multiple worker threads.
461465

lib/internal/blob.js

Lines changed: 0 additions & 2 deletions
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

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

0 commit comments

Comments
 (0)