mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
buffer: graduate Blob from experimental
It's time. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
parent
9d6bd102ee
commit
99c18f4786
2 changed files with 4 additions and 4 deletions
|
@ -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') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue