]> zoso.dev Git - buffer.git/commitdiff
style
authorFeross Aboukhadijeh <feross@feross.org>
Thu, 12 Dec 2013 20:19:38 +0000 (12:19 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Thu, 12 Dec 2013 20:19:38 +0000 (12:19 -0800)
index.js

index 7c4f0851ae36af96e2ba348be09d79a657be0614..c0561ff59b5e1717bbd80564c6cf767bd8e980bb 100644 (file)
--- 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])