mirror of https://github.com/nodejs/node.git
Document defaults for buffer.copy()
parent
a326eebac8
commit
6d7242b485
|
@ -113,7 +113,7 @@ buffer object. It does not change when the contents of the buffer are changed.
|
||||||
// 1234
|
// 1234
|
||||||
// 1234
|
// 1234
|
||||||
|
|
||||||
### buffer.copy(targetBuffer, targetStart, sourceStart, sourceEnd=buffer.length)
|
### buffer.copy(targetBuffer, targetStart, sourceStart=0, sourceEnd=buffer.length)
|
||||||
|
|
||||||
Does a memcpy() between buffers.
|
Does a memcpy() between buffers.
|
||||||
|
|
||||||
|
|
|
@ -280,7 +280,7 @@ Buffer.prototype.toString = function (encoding, start, end) {
|
||||||
Buffer.byteLength = SlowBuffer.byteLength;
|
Buffer.byteLength = SlowBuffer.byteLength;
|
||||||
|
|
||||||
|
|
||||||
// copy(targetBuffer, targetStart, sourceStart, sourceEnd=buffer.length)
|
// copy(targetBuffer, targetStart, sourceStart=0, sourceEnd=buffer.length)
|
||||||
Buffer.prototype.copy = function copy (target, target_start, start, end) {
|
Buffer.prototype.copy = function copy (target, target_start, start, end) {
|
||||||
var source = this;
|
var source = this;
|
||||||
start || (start = 0);
|
start || (start = 0);
|
||||||
|
|
Loading…
Reference in New Issue