]> zoso.dev Git - buffer.git/commitdiff
fix invisible char
authorFeross Aboukhadijeh <feross@feross.org>
Sat, 28 Dec 2013 11:03:34 +0000 (03:03 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Sat, 28 Dec 2013 11:03:34 +0000 (03:03 -0800)
index.js

index 892c99fe1ce135942d4e939efa77d422f0153749..46d0f975ed9bf7a2527c20a123424e2f3d09f0af 100644 (file)
--- a/index.js
+++ b/index.js
@@ -901,7 +901,7 @@ Buffer.prototype.writeFloatBE = function (value, offset, noAssert) {
 function _writeDouble (buf, value, offset, littleEndian, noAssert) {
   if (!noAssert) {
     assert(value !== undefined && value !== null, 'missing value')
-    assert(typeof littleEndian === 'boolean', 'missing or invalid endian')
+    assert(typeof littleEndian === 'boolean', 'missing or invalid endian')
     assert(offset !== undefined && offset !== null, 'missing offset')
     assert(offset + 7 < buf.length,
         'Trying to write beyond buffer length')