From c52985c9006ec6a7b4ef1e7aff59b619b92f5e54 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Tue, 21 Dec 2021 11:59:17 -0800 Subject: [PATCH] buffer: graduate Blob from experimental It's time. Signed-off-by: James M Snell PR-URL: https://github.com/nodejs/node/pull/41270 Reviewed-By: Antoine du Hamel Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Matteo Collina Reviewed-By: Robert Nagy --- doc/api/buffer.md | 6 ++++-- lib/internal/blob.js | 2 -- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/buffer.md b/doc/api/buffer.md index abe5c88bd81b6a..9ea44757b12911 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -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. diff --git a/lib/internal/blob.js b/lib/internal/blob.js index e5ea99b0a965d2..3a45d58d7c179e 100644 --- a/lib/internal/blob.js +++ b/lib/internal/blob.js @@ -44,7 +44,6 @@ const { const { createDeferredPromise, customInspectSymbol: kInspect, - emitExperimentalWarning, } = require('internal/util'); const { inspect } = require('internal/util/inspect'); @@ -134,7 +133,6 @@ class Blob { * @constructs {Blob} */ constructor(sources = [], options = {}) { - emitExperimentalWarning('buffer.Blob'); if (sources === null || typeof sources[SymbolIterator] !== 'function' || typeof sources === 'string') {