From 737938c2e1964379339d4e1bf60a7b5aee49909c Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sat, 28 Dec 2013 03:03:34 -0800 Subject: [PATCH] fix invisible char --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 892c99f..46d0f97 100644 --- 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') -- 2.34.1