Home
last modified time | relevance | path

Searched refs:ERR_STREAM_PREMATURE_CLOSE (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Dend-of-stream.js5 var ERR_STREAM_PREMATURE_CLOSE = require('../../../errors').codes.ERR_STREAM_PREMATURE_CLOSE; variable
62 …if (!stream._readableState || !stream._readableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();
67 …if (!stream._writableState || !stream._writableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();
/third_party/node/lib/internal/streams/
Dend-of-stream.js8 ERR_STREAM_PREMATURE_CLOSE
117 return callback.call(stream, new ERR_STREAM_PREMATURE_CLOSE());
121 return callback.call(stream, new ERR_STREAM_PREMATURE_CLOSE());
/third_party/node/doc/api/
Derrors.md1930 <a id="ERR_STREAM_PREMATURE_CLOSE"></a>
1931 ### `ERR_STREAM_PREMATURE_CLOSE`
Dstream.md1631 will cause an `ERR_STREAM_PREMATURE_CLOSE` error.