]> zoso.dev Git - buffer.git/commitdiff
standardize
authorJesse Tane <jesse.tane@gmail.com>
Tue, 11 Aug 2015 03:45:07 +0000 (23:45 -0400)
committerJesse Tane <jesse.tane@gmail.com>
Tue, 11 Aug 2015 05:39:45 +0000 (01:39 -0400)
index.js

index cdd3092aebce1d5cf1cae8bfe7c7c8d16addde6c..623e7cfcb305a974e7edad5d29aa3008aadcd6bd 100644 (file)
--- a/index.js
+++ b/index.js
@@ -624,7 +624,14 @@ function base64Slice (buf, start, end) {
 
 function utf8Slice (buf, start, end) {
   end = Math.min(buf.length, end)
-  var firstByte, secondByte, thirdByte, fourthByte, bytesPerSequence, tempCodePoint, codePoint, res = []
+  var firstByte
+  var secondByte
+  var thirdByte
+  var fourthByte
+  var bytesPerSequence
+  var tempCodePoint
+  var codePoint
+  var res = []
   var i = start
 
   for (; i < end; i += bytesPerSequence) {