]> zoso.dev Git - buffer.git/commitdiff
Error message on Buffer creation changed
authorVolker Mische <volker.mische@gmail.com>
Fri, 19 Jan 2018 14:45:22 +0000 (15:45 +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 63479f43a2ae4555e756f33a22c872bfb6062410..01977be7084e40dc1d99b159e31e39eab02d78a1 100644 (file)
--- a/index.js
+++ b/index.js
@@ -264,7 +264,7 @@ function fromObject (obj) {
     }
   }
 
-  throw new TypeError('First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.')
+  throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object.')
 }
 
 function checked (length) {
index 3f04b3eb8d10a453f532a8f7742ab8654d5a9c59..0bd87a3b3777ab55fcad512129a5f5f4a972d432 100644 (file)
@@ -939,14 +939,14 @@ Buffer.poolSize = ps;
 // Test Buffer.copy() segfault
 assert.throws(() => Buffer.allocUnsafe(10).copy(),
               /TypeError: argument should be a Buffer/);
-/*
+
 var regErrorMsg =
   new RegExp('The first argument must be one of type string, Buffer, ' +
              'ArrayBuffer, Array, or Array-like Object\\.');
 
 assert.throws(() => Buffer.from(), regErrorMsg);
 assert.throws(() => Buffer.from(null), regErrorMsg);
-*/
+
 // Test prototype getters don't throw
 assert.strictEqual(Buffer.prototype.parent, undefined);
 assert.strictEqual(Buffer.prototype.offset, undefined);