summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2013-08-15 17:55:35 -0400
committerTrevor Norris <trev.norris@gmail.com>2013-08-15 17:19:18 -0700
commite62d5964def23a619048237490f27ac781fb09ab (patch)
treeb36e87f58eef30d6a7e534804616a1c547749fcb
parent6d842897c5966cee1924b5073e273568923c8693 (diff)
downloadnode-e62d5964def23a619048237490f27ac781fb09ab.tar.gz
buffer: remove unused parameters
-rw-r--r--lib/buffer.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/buffer.js b/lib/buffer.js
index 377ee6172..b6dfc526c 100644
--- a/lib/buffer.js
+++ b/lib/buffer.js
@@ -409,7 +409,7 @@ Buffer.prototype.readUInt16BE = function(offset, noAssert) {
};
-function readUInt32(buffer, offset, isBigEndian, noAssert) {
+function readUInt32(buffer, offset, isBigEndian) {
var val = 0;
if (isBigEndian) {
val = buffer[offset + 1] << 16;
@@ -430,7 +430,7 @@ Buffer.prototype.readUInt32LE = function(offset, noAssert) {
offset = ~~offset;
if (!noAssert)
checkOffset(offset, 4, this.length);
- return readUInt32(this, offset, false, noAssert);
+ return readUInt32(this, offset, false);
};
@@ -438,7 +438,7 @@ Buffer.prototype.readUInt32BE = function(offset, noAssert) {
offset = ~~offset;
if (!noAssert)
checkOffset(offset, 4, this.length);
- return readUInt32(this, offset, true, noAssert);
+ return readUInt32(this, offset, true);
};