summaryrefslogtreecommitdiff
path: root/lib/buffer.js
AgeCommit message (Expand)AuthorFilesLines
2011-09-24buffers: handle bad length argument in constructorBen Noordhuis1-3/+12
2011-09-08buffer: write() should always set _charsWritten.koichik1-0/+1
2011-08-12Incorporate endianness into buffer.read* function names instead of passing in...Brian White1-203/+263
2011-08-08Make buffer.INSPECT_MAX_BYTES public for mscdexRyan Dahl1-3/+3
2011-08-08Truncate Buffer.inspect at 50 bytesRyan Dahl1-0/+12
2011-08-08Endian argument should be a boolean. Signed integers shouldn't run through ch...Robert Mustacchi1-193/+170
2011-07-27Lazy load a few modulesRyan Dahl1-5/+4
2011-07-24Add an optional length argument to Buffer.write()koichik1-28/+70
2011-07-16More accurite error messages when writing beyond the length of a Buffer.Devon Govett1-8/+8
2011-05-15Add reading/writing of floats and doubles from/to buffersBrian White1-0/+95
2011-05-07Merge branch 'v0.4'isaacs1-1/+1
2011-05-06Add Buffer::fill method to do memsetKonstantin Käfer1-0/+33
2011-05-01Add reading/writing of C integers to buffersRobert Mustacchi1-3/+445
2011-04-28Fix SlowBuffer.write() with 'ucs2' throws ReferenceError.koichik1-1/+1
2011-04-03Merge branch 'v0.4'Ryan Dahl1-0/+2
2011-03-29Closes GH-843. Fix SlowBuffer.prototype.sliceRyan Dahl1-0/+2
2011-03-15correct hexSlice endRyan Dahl1-1/+1
2011-03-15Fix invalid end handling for SlowBuffer#hexSliceisaacs1-1/+1
2011-03-14Fix buffer.toString('hex')Ryan Dahl1-1/+1
2011-03-14Merge branch 'v0.4'Ryan Dahl1-0/+21
2011-03-14Update copyright headersRyan Dahl1-0/+21
2011-02-19Closes GH-695 Add 'hex' encoding to Bufferisaacs1-0/+45
2011-02-07Closes GH-609 Support array-ish args to Buffer ctorisaacs1-2/+8
2011-02-07UCS-2 supportKonstantin Käfer1-0/+17
2011-01-27TyposRyan Dahl1-1/+1
2010-12-01lintRyan Dahl1-43/+44
2010-11-29buffer.copy targetStart defaults to 0Ryan Dahl1-1/+2
2010-11-29Document defaults for buffer.copy()Ryan Dahl1-1/+1
2010-11-23Fix buffer.slice(0, 0)Ryan Dahl1-1/+1
2010-11-18Make SlowBuffer pass Buffer.isBuffer test.Stéphan Kochen1-1/+1
2010-11-02Add legacy methods to BufferRyan Dahl1-0/+28
2010-10-18base64 decode should handle whitespaceRyan Dahl1-1/+1
2010-09-14Default value for second arg of Buffer#sliceRyan Dahl1-6/+3
2010-09-09Rename SlowBuffer in bindingRyan Dahl1-1/+1
2010-09-09Remove blobs, simplify SlowBufferRyan Dahl1-1/+13
2010-09-09Simplify fast buffer constructorRyan Dahl1-12/+9
2010-09-09Improve long buffer testRyan Dahl1-10/+8
2010-09-09defineProperty is slow, don't use it for fastbufferRyan Dahl1-19/+7
2010-09-09Expose SlowBufferRyan Dahl1-0/+1
2010-09-09Expose Buffer.poolSizeRyan Dahl1-10/+9
2010-09-09map charsWritten to fast bufferRyan Dahl1-4/+14
2010-09-09More fast buffer workRyan Dahl1-28/+67
2010-09-09fast buffer bounds checking in copy()Ryan Dahl1-13/+41
2010-09-09string.length !== Buffer.byteLength(string)Tim-Smart1-3/+7
2010-09-09Fast Buffer safe constructorRyan Dahl1-0/+4
2010-09-09Fix fastbuffer styleRyan Dahl1-17/+21
2010-09-09Some silly fixes to buffer.jsTim-Smart1-28/+27
2010-09-09FastBuffer implementation. API needs migrationTim-Smart1-2/+163
2010-08-19Add get/set methods to BufferRyan Dahl1-1/+9
2010-07-25Added ability to pass offset to buffer write and toString methods as a string...Dmitry Baranovskiy1-28/+17