]> zoso.dev Git - buffer.git/commitdiff
Buffer#fill should be chainable
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 7 May 2014 22:20:56 +0000 (15:20 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 7 May 2014 22:20:56 +0000 (15:20 -0700)
index.js

index c10884771d3522571e83ec4884516d4d2cfc7bf3..2eafb8974c755a1eb5c2b560e2b020db95e05107 100644 (file)
--- a/index.js
+++ b/index.js
@@ -911,6 +911,8 @@ Buffer.prototype.fill = function (value, start, end) {
   for (var i = start; i < end; i++) {
     this[i] = value
   }
+
+  return this
 }
 
 Buffer.prototype.inspect = function () {
@@ -948,11 +950,6 @@ Buffer.prototype.toArrayBuffer = function () {
 // HELPER FUNCTIONS
 // ================
 
-function stringtrim (str) {
-  if (str.trim) return str.trim()
-  return str.replace(/^\s+|\s+$/g, '')
-}
-
 var BP = Buffer.prototype
 
 /**
@@ -1012,6 +1009,11 @@ Buffer._augment = function (arr) {
   return arr
 }
 
+function stringtrim (str) {
+  if (str.trim) return str.trim()
+  return str.replace(/^\s+|\s+$/g, '')
+}
+
 // slice(start, end)
 function clamp (index, len, defaultValue) {
   if (typeof index !== 'number') return defaultValue