From 72fc9d6834ecd334505d6c73aef160b4837320c9 Mon Sep 17 00:00:00 2001 From: Jesse Tane Date: Mon, 10 Aug 2015 23:45:07 -0400 Subject: [PATCH] standardize --- index.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index cdd3092..623e7cf 100644 --- 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) { -- 2.34.1