]> zoso.dev Git - buffer.git/commitdiff
new Buffer -> Buffer.from
authorСковорода Никита Андреевич <chalkerx@gmail.com>
Thu, 22 Feb 2018 16:29:45 +0000 (19:29 +0300)
committerGitHub <noreply@github.com>
Thu, 22 Feb 2018 16:29:45 +0000 (19:29 +0300)
This is benign due to the module nature, but just for consistency.

index.js

index fa57ec493efad5c9b3f07fb2adb6338dbe60a266..06b36e7e90a5ccfc3fcb7fc5551c046aefb0f820 100644 (file)
--- a/index.js
+++ b/index.js
@@ -1608,7 +1608,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) {
   } else {
     var bytes = Buffer.isBuffer(val)
       ? val
-      : new Buffer(val, encoding)
+      : Buffer.from(val, encoding)
     var len = bytes.length
     if (len === 0) {
       throw new TypeError('The value "' + val +