summaryrefslogtreecommitdiff
path: root/lib/buffer.js
Commit message (Expand)AuthorAgeFilesLines
* buffer: add .read*() and .write*() methods to SlowBuffer prototypeBen Noordhuis2011-11-181-0/+29
* buffer: fix minimum values for writeInt*() functionsŁukasz Walukiewicz2011-11-161-3/+3
* buffers: handle bad length argument in constructorBen Noordhuis2011-09-241-3/+12
* buffer: write() should always set _charsWritten.koichik2011-09-081-0/+1
* Incorporate endianness into buffer.read* function names instead of passing in...Brian White2011-08-121-203/+263
* Make buffer.INSPECT_MAX_BYTES public for mscdexRyan Dahl2011-08-081-3/+3
* Truncate Buffer.inspect at 50 bytesRyan Dahl2011-08-081-0/+12
* Endian argument should be a boolean. Signed integers shouldn't run through ch...Robert Mustacchi2011-08-081-193/+170
* Lazy load a few modulesRyan Dahl2011-07-271-5/+4
* Add an optional length argument to Buffer.write()koichik2011-07-241-28/+70
* More accurite error messages when writing beyond the length of a Buffer.Devon Govett2011-07-161-8/+8
* Add reading/writing of floats and doubles from/to buffersBrian White2011-05-151-0/+95
* Merge branch 'v0.4'isaacs2011-05-071-1/+1
|\
| * Fix SlowBuffer.write() with 'ucs2' throws ReferenceError.koichik2011-04-281-1/+1
* | Add Buffer::fill method to do memsetKonstantin Käfer2011-05-061-0/+33
* | Add reading/writing of C integers to buffersRobert Mustacchi2011-05-011-3/+445
* | Merge branch 'v0.4'Ryan Dahl2011-04-031-0/+2
|\ \ | |/
| * Closes GH-843. Fix SlowBuffer.prototype.sliceRyan Dahl2011-03-291-0/+2
* | correct hexSlice endRyan Dahl2011-03-151-1/+1
* | Fix invalid end handling for SlowBuffer#hexSliceisaacs2011-03-151-1/+1
* | Fix buffer.toString('hex')Ryan Dahl2011-03-141-1/+1
* | Merge branch 'v0.4'Ryan Dahl2011-03-141-0/+21
|\ \ | |/
| * Update copyright headersRyan Dahl2011-03-141-0/+21
* | Closes GH-695 Add 'hex' encoding to Bufferisaacs2011-02-191-0/+45
|/
* Closes GH-609 Support array-ish args to Buffer ctorisaacs2011-02-071-2/+8
* UCS-2 supportKonstantin Käfer2011-02-071-0/+17
* TyposRyan Dahl2011-01-271-1/+1
* lintRyan Dahl2010-12-011-43/+44
* buffer.copy targetStart defaults to 0Ryan Dahl2010-11-291-1/+2
* Document defaults for buffer.copy()Ryan Dahl2010-11-291-1/+1
* Fix buffer.slice(0, 0)Ryan Dahl2010-11-231-1/+1
* Make SlowBuffer pass Buffer.isBuffer test.Stéphan Kochen2010-11-181-1/+1
* Add legacy methods to BufferRyan Dahl2010-11-021-0/+28
* base64 decode should handle whitespaceRyan Dahl2010-10-181-1/+1
* Default value for second arg of Buffer#sliceRyan Dahl2010-09-141-6/+3
* Rename SlowBuffer in bindingRyan Dahl2010-09-091-1/+1
* Remove blobs, simplify SlowBufferRyan Dahl2010-09-091-1/+13
* Simplify fast buffer constructorRyan Dahl2010-09-091-12/+9
* Improve long buffer testRyan Dahl2010-09-091-10/+8
* defineProperty is slow, don't use it for fastbufferRyan Dahl2010-09-091-19/+7
* Expose SlowBufferRyan Dahl2010-09-091-0/+1
* Expose Buffer.poolSizeRyan Dahl2010-09-091-10/+9
* map charsWritten to fast bufferRyan Dahl2010-09-091-4/+14
* More fast buffer workRyan Dahl2010-09-091-28/+67
* fast buffer bounds checking in copy()Ryan Dahl2010-09-091-13/+41
* string.length !== Buffer.byteLength(string)Tim-Smart2010-09-091-3/+7
* Fast Buffer safe constructorRyan Dahl2010-09-091-0/+4
* Fix fastbuffer styleRyan Dahl2010-09-091-17/+21
* Some silly fixes to buffer.jsTim-Smart2010-09-091-28/+27
* FastBuffer implementation. API needs migrationTim-Smart2010-09-091-2/+163