]> zoso.dev Git - buffer.git/commitdiff
style
authorFeross Aboukhadijeh <feross@feross.org>
Sat, 25 Jan 2014 23:12:42 +0000 (15:12 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Sat, 25 Jan 2014 23:12:42 +0000 (15:12 -0800)
index.js

index 69a97e2027a623df738dad5fcd72ca0ea288f00b..97d709145b21a42e8c0c9f67afa7847510b3c619 100644 (file)
--- a/index.js
+++ b/index.js
@@ -123,7 +123,7 @@ Buffer.isEncoding = function (encoding) {
 }
 
 Buffer.isBuffer = function (b) {
-  return (b != null && b._isBuffer) || false
+  return !!(b !== null && b !== undefined && b._isBuffer)
 }
 
 Buffer.byteLength = function (str, encoding) {
@@ -203,12 +203,10 @@ function _hexWrite (buf, string, offset, length) {
 }
 
 function _utf8Write (buf, string, offset, length) {
-  var bytes, pos
   return Buffer._charsWritten = blitBuffer(utf8ToBytes(string), buf, offset, length)
 }
 
 function _asciiWrite (buf, string, offset, length) {
-  var bytes, pos
   return Buffer._charsWritten = blitBuffer(asciiToBytes(string), buf, offset, length)
 }
 
@@ -217,7 +215,6 @@ function _binaryWrite (buf, string, offset, length) {
 }
 
 function _base64Write (buf, string, offset, length) {
-  var bytes, pos
   return Buffer._charsWritten = blitBuffer(base64ToBytes(string), buf, offset, length)
 }