summaryrefslogtreecommitdiff
path: root/lib/buffer.js
Commit message (Expand)AuthorAgeFilesLines
* buffer: reword Buffer.concat error messageChris Dickinson2015-03-041-1/+1
* buffer: fix sign overflow in `readUIn32BE`Fedor Indutny2014-07-291-2/+2
* buffer: improve {read,write}{U}Int* methodsNick Apperson2014-06-231-180/+50
* buffer: add comment explaining buffer alignmentBen Noordhuis2013-06-271-2/+2
* buffer: throw when writing beyond bufferTrevor Norris2013-05-201-0/+3
* buffer: fix offset checksŁukasz Walukiewicz2013-04-081-2/+2
* buffer: check logic simplificationTrevor Norris2013-02-201-26/+27
* buffer: accept negative indices in Buffer#slice()Ben Noordhuis2013-02-121-18/+19
* buffer: optimize Buffer.prototype.write(s, 'hex')Ben Noordhuis2013-02-021-30/+0
* buffer: optimize Buffer.prototype.toString('hex')Ben Noordhuis2013-02-011-15/+0
* buffer: error and misc cleanupTrevor Norris2013-01-251-25/+30
* buffer: clean up copy() asserts and testsTrevor Norris2013-01-251-25/+14
* buffer: slow buffer copy compatibility fixTrevor Norris2013-01-251-2/+2
* Merge remote-tracking branch 'ry/v0.8' into masterisaacs2013-01-181-1/+1
|\
| * buffer: reject negative SlowBuffer offsetsBen Noordhuis2013-01-171-1/+1
| * buffer: zero-length buffers shouldn't be slab-backedBert Belder2013-01-141-2/+8
* | lint: Prefer double-quotes over singleisaacs2013-01-161-3/+3
* | buffer: improve read/write speed with assertTrevor Norris2013-01-161-218/+115
* | buffer: floating point read/write improvementsTrevor Norris2013-01-161-87/+29
* | buffer: zero-length buffers shouldn't be slab-backedBert Belder2013-01-141-2/+8
* | Revert "buffer: allocate memory with mmap()"isaacs2012-12-171-2/+1
* | buffer: allocate memory with mmap()Ben Noordhuis2012-12-161-1/+2
* | Merge remote-tracking branch 'ry/v0.8' into masterisaacs2012-12-131-4/+4
|\ \ | |/
| * buffer: Don't double-negate numeric buffer argTrevor Norris2012-11-301-4/+4
| * Revert "buffer: added support for writing NaN and Infinity"koichik2012-09-021-7/+3
| * buffer: added support for writing NaN and Infinitykoichik2012-09-021-3/+7
* | buffer: remove duplicate assertion testsTrevor Norris2012-11-101-33/+0
* | buffer: include encoding value in exception when invalidRicky Ng-Adam2012-10-091-4/+4
* | buffer: implement Buffer.prototype.toJSON()Nathan Rajlich2012-09-091-0/+5
* | buffer: added support for writing NaN and Infinitykoichik2012-09-021-3/+7
* | Buffer.isEncoding(enc)isaacs2012-08-271-0/+23
|/
* Use parent SlowBuffer, if any, when Buffer is slicedKarl Skomski2012-06-211-1/+5
* Add Buffer.concat methodisaacs2012-06-111-0/+32
* Revert "Fix #3242 Actually deprecate 'binary' buffer encoding"isaacs2012-05-161-15/+0
* lintisaacs2012-05-151-1/+1
* buffer: make SlowBuffer inherit from BufferNathan Rajlich2012-05-111-47/+9
* Fix #3242 Actually deprecate 'binary' buffer encodingisaacs2012-05-091-0/+15
* buffer: add UTF-16LE encoding name.koichik2012-05-031-0/+8
* buffer: align fast buffers on 8 byte boundaryBen Noordhuis2012-03-291-0/+1
* buffer: don't pollute global namespace in buffer.readInt*Phil Sung2011-12-221-2/+2
* 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