summaryrefslogtreecommitdiff
path: root/lib/_stream_readable.js
Commit message (Expand)AuthorAgeFilesLines
* repl: Private Buffer object in lib/* filesEmmanuel Odeke2014-10-251-0/+1
* stream: fix Readable.wrap objectMode falsy valuesJames Halliday2014-08-011-1/+6
* stream2: flush extant data on read of ended streamChris Dickinson2014-07-151-2/+21
* lib: remove and restructure calls to isNaN()cjihrig2014-07-101-1/+1
* Revert "stream: start old-mode read in a next tick"Fedor Indutny2014-06-301-12/+2
* stream: start old-mode read in a next tickFedor Indutny2014-06-051-2/+12
* stream: remove useless checkBrian White2014-02-241-2/+1
* stream: check _events before _events.errorisaacs2013-08-281-1/+1
* stream: Throw on 'error' if listeners removedisaacs2013-08-191-4/+12
* stream: Fix double pipe error emitEran Hammer2013-08-061-1/+3
* stream: unshift('') is a noopisaacs2013-06-031-1/+1
* stream: Make default encoding configurableisaacs2013-05-141-1/+6
* stream: don't create unnecessary buffers in Readableisaacs2013-05-141-7/+18
* stream: make Readable.wrap support empty streamsDaniel Moore2013-05-081-1/+0
* stream: make Readable.wrap support objectModeDaniel Moore2013-05-081-1/+1
* stream: Fix unshift() race conditionsisaacs2013-04-111-19/+32
* stream: Emit readable on ended streams via read(0)isaacs2013-03-281-1/+1
* stream: Handle late 'readable' event listenersisaacs2013-03-281-3/+14
* stream: Return self from readable.wrapisaacs2013-03-141-1/+3
* stream: Never call decoder.end() multiple timesGil Pedersen2013-03-141-4/+4
* Revert "stream: Never call decoder.end() multiple times"isaacs2013-03-131-1/+0
* stream: Never call decoder.end() multiple timesGil Pedersen2013-03-131-0/+1
* stream: Don't emit 'end' unless read() calledisaacs2013-03-101-15/+24
* stream: Avoid nextTick warning filling read bufferisaacs2013-03-101-3/+9
* stream: Always defer preemptive reading to improve latencyGil Pedersen2013-03-081-6/+10
* stream: Raise readable high water mark in powers of 2isaacs2013-03-061-2/+17
* stream: Allow strings in Readable.push/unshiftisaacs2013-03-061-0/+4
* stream: Remove bufferSize optionisaacs2013-03-061-5/+1
* stream: Remove pipeOpts.chunkSizeisaacs2013-03-061-6/+1
* stream: Increase highWaterMark on large readsisaacs2013-03-061-0/+5
* stream: Don't require read(0) to emit 'readable' eventisaacs2013-03-041-5/+5
* events: add check for listeners lengthTrevor Norris2013-03-011-2/+3
* stream: There is no _read cb, there is only pushisaacs2013-02-281-27/+9
* stream: Add stream.unshift(chunk)isaacs2013-02-281-3/+11
* stream: Break up the onread functionisaacs2013-02-281-81/+83
* stream: Do not switch to objectMode implicitlyisaacs2013-02-251-7/+8
* stream: Start out in sync=true stateisaacs2013-02-251-1/+7
* streams: Pre-emptively buffer readables up to the highWaterMarkisaacs2013-02-221-0/+9
* stream: Return false from push() more properlyisaacs2013-02-211-11/+26
* stream: remove lowWaterMark featureisaacs2013-02-211-14/+6
* stream: Pipe data in chunks matching read dataGil Pedersen2013-02-151-2/+7
* stream: read(0) should not always trigger _read(n,cb)isaacs2013-02-111-0/+10
* stream: Empty strings/buffers do not signal EOF any longerisaacs2013-02-111-1/+1
* streams: both `finish` and `close` should unpipeFedor Indutny2013-02-061-5/+9
* stream: Don't stop reading on zero-length decoded outputisaacs2013-01-311-3/+3
* stream: Don't signal EOF on '' or Buffer(0)isaacs2013-01-311-7/+14
* streams2: Handle sync read callbacks nicelyisaacs2013-01-241-16/+23
* streams: Support objects other than BuffersRaynos2013-01-241-10/+42
* stream: Properly handle large reads from push-streamsisaacs2013-01-161-2/+13
* streams2: Do not allow hwm < lwmisaacs2013-01-141-0/+3