};
-function readUInt32(buffer, offset, isBigEndian, noAssert) {
+function readUInt32(buffer, offset, isBigEndian) {
var val = 0;
if (isBigEndian) {
val = buffer[offset + 1] << 16;
offset = ~~offset;
if (!noAssert)
checkOffset(offset, 4, this.length);
- return readUInt32(this, offset, false, noAssert);
+ return readUInt32(this, offset, false);
};
offset = ~~offset;
if (!noAssert)
checkOffset(offset, 4, this.length);
- return readUInt32(this, offset, true, noAssert);
+ return readUInt32(this, offset, true);
};