]> zoso.dev Git - buffer.git/commitdiff
standard
authorFeross Aboukhadijeh <feross@feross.org>
Tue, 27 Oct 2020 21:49:13 +0000 (11:49 -1000)
committerFeross Aboukhadijeh <feross@feross.org>
Tue, 27 Oct 2020 21:49:13 +0000 (11:49 -1000)
index.js

index 896dbca10cfabc16093a5c7b9ecbd49467701549..f5a66e75e46dcbb71a80492f08a76514765af218 100644 (file)
--- a/index.js
+++ b/index.js
@@ -1156,14 +1156,14 @@ Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert)
   return val
 }
 
-Buffer.prototype.readUint8 = 
+Buffer.prototype.readUint8 =
 Buffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {
   offset = offset >>> 0
   if (!noAssert) checkOffset(offset, 1, this.length)
   return this[offset]
 }
 
-Buffer.prototype.readUint16LE = 
+Buffer.prototype.readUint16LE =
 Buffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {
   offset = offset >>> 0
   if (!noAssert) checkOffset(offset, 2, this.length)