From: Feross Aboukhadijeh Date: Thu, 12 Dec 2013 20:19:38 +0000 (-0800) Subject: style X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=6a5105a0fb255ea7e68f5746d7fdc1817318ae7e;p=buffer.git style --- diff --git a/index.js b/index.js index 7c4f085..c0561ff 100644 --- a/index.js +++ b/index.js @@ -365,7 +365,7 @@ function _base64Slice (buf, start, end) { function _utf8Slice (buf, start, end) { var res = '' var tmp = '' - end = Math.min(buf.length, end); + end = Math.min(buf.length, end) for (var i = start; i < end; i++) { if (buf[i] <= 0x7F) { @@ -381,7 +381,7 @@ function _utf8Slice (buf, start, end) { function _asciiSlice (buf, start, end) { var ret = '' - end = Math.min(buf.length, end); + end = Math.min(buf.length, end) for (var i = start; i < end; i++) ret += String.fromCharCode(buf[i])