]> zoso.dev Git - buffer.git/commitdiff
disable value check on floats to match node behavior
authorJames Halliday <mail@substack.net>
Thu, 28 Jan 2016 21:56:12 +0000 (13:56 -0800)
committerJames Halliday <mail@substack.net>
Thu, 28 Jan 2016 21:56:12 +0000 (13:56 -0800)
index.js

index 0f2ddbfd830ba8af1358208174cd49c0c8b4215f..c50d1b8bbab7cbfa0d812fa65f9b7d638345c8bf 100644 (file)
--- a/index.js
+++ b/index.js
@@ -1193,7 +1193,6 @@ Buffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert)
 }
 
 function checkIEEE754 (buf, value, offset, ext, max, min) {
-  if (value > max || value < min) throw new RangeError('value is out of bounds')
   if (offset + ext > buf.length) throw new RangeError('index out of range')
   if (offset < 0) throw new RangeError('index out of range')
 }