From 6a5105a0fb255ea7e68f5746d7fdc1817318ae7e Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 12 Dec 2013 12:19:38 -0800 Subject: [PATCH] style --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]) -- 2.34.1