Skip to content

Commit

Permalink
buffer: graduate Blob from experimental
Browse files Browse the repository at this point in the history
It's time.

Signed-off-by: James M Snell <jasnell@gmail.com>

PR-URL: #41270
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com>
  • Loading branch information
jasnell committed Dec 24, 2021
1 parent 9d6bd10 commit 99c18f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 4 additions & 2 deletions doc/api/buffer.md
Expand Up @@ -456,10 +456,12 @@ Additionally, the [`buf.values()`][], [`buf.keys()`][], and
added:
- v15.7.0
- v14.18.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: No longer experimental.
-->

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

Expand Down
2 changes: 0 additions & 2 deletions lib/internal/blob.js
Expand Up @@ -44,7 +44,6 @@ const {
const {
createDeferredPromise,
customInspectSymbol: kInspect,
emitExperimentalWarning,
} = require('internal/util');
const { inspect } = require('internal/util/inspect');

Expand Down Expand Up @@ -134,7 +133,6 @@ class Blob {
* @constructs {Blob}
*/
constructor(sources = [], options = {}) {
emitExperimentalWarning('buffer.Blob');
if (sources === null ||
typeof sources[SymbolIterator] !== 'function' ||
typeof sources === 'string') {
Expand Down

0 comments on commit 99c18f4

Please sign in to comment.