Searched refs:streamWritable (Results 1 – 3 of 3) sorted by relevance
100 function newWritableStreamFromStreamWritable(streamWritable) { argument107 streamWritable &&108 typeof streamWritable?.write === 'function' &&109 typeof streamWritable?.on === 'function';114 streamWritable,118 if (isDestroyed(streamWritable) || !isWritable(streamWritable)) {124 const highWaterMark = streamWritable.writableHighWaterMark;126 streamWritable.writableObjectMode ?139 const cleanup = finished(streamWritable, (error) => {148 streamWritable.on('error', () => {});[all …]
925 Writable.toWeb = function(streamWritable) { argument926 return lazyWebStreams().newWritableStreamFromStreamWritable(streamWritable);
3066 ### `stream.Writable.toWeb(streamWritable)`3074 * `streamWritable` {stream.Writable}