]> zoso.dev Git - buffer.git/commitdiff
Out of bounds error message changed
authorVolker Mische <volker.mische@gmail.com>
Fri, 19 Jan 2018 14:47:45 +0000 (15:47 +0100)
committerVolker Mische <volker.mische@gmail.com>
Sun, 21 Jan 2018 02:01:01 +0000 (03:01 +0100)
index.js
test/node/test-buffer-alloc.js

index 01977be7084e40dc1d99b159e31e39eab02d78a1..9481755e6930df433bcd9971ba21eee0868c06f4 100644 (file)
--- a/index.js
+++ b/index.js
@@ -217,7 +217,7 @@ function fromArrayLike (array) {
 
 function fromArrayBuffer (array, byteOffset, length) {
   if (byteOffset < 0 || array.byteLength < byteOffset) {
-    throw new RangeError('\'offset\' is out of bounds')
+    throw new RangeError('"offset" is outside of buffer bounds')
   }
 
   if (array.byteLength < byteOffset + (length || 0)) {
index 0bd87a3b3777ab55fcad512129a5f5f4a972d432..597fa93d23492b3b9aa15d08c147937420cab110 100644 (file)
@@ -967,7 +967,7 @@ assert.strictEqual(SlowBuffer.prototype.offset, undefined);
   assert.doesNotThrow(() => Buffer.from('abc'));
 }
 
-/*
+
 // Test that ParseArrayIndex handles full uint32
 {
   var errMsg = common.expectsError({
@@ -977,7 +977,7 @@ assert.strictEqual(SlowBuffer.prototype.offset, undefined);
   });
   assert.throws(() => Buffer.from(new ArrayBuffer(0), -1 >>> 0), errMsg);
 }
-
+/*
 // ParseArrayIndex() should reject values that don't fit in a 32 bits size_t.
 common.expectsError(() => {
   var a = Buffer.alloc(1);