]> zoso.dev Git - buffer.git/commitdiff
Access buffer elements directly when slicing.
authorRuben Verborgh <ruben@verborgh.org>
Thu, 12 Dec 2013 18:42:06 +0000 (18:42 +0000)
committerRuben Verborgh <ruben@verborgh.org>
Thu, 12 Dec 2013 18:42:06 +0000 (18:42 +0000)
index.js

index 133d967fd8a376673f55b2ffb99188ea33774d32..c1b9992591181ed35e0db20a57349c163c355c6d 100644 (file)
--- a/index.js
+++ b/index.js
@@ -363,29 +363,28 @@ function _base64Slice (buf, start, end) {
 }
 
 function _utf8Slice (buf, start, end) {
-  var bytes = buf.slice(start, end)
   var res = ''
   var tmp = ''
-  var i = 0
-  while (i < bytes.length) {
-    if (bytes[i] <= 0x7F) {
-      res += decodeUtf8Char(tmp) + String.fromCharCode(bytes[i])
+  end = Math.min(buf.length, end);
+
+  for (var i = start; i < end; i++) {
+    if (buf[i] <= 0x7F) {
+      res += decodeUtf8Char(tmp) + String.fromCharCode(buf[i])
       tmp = ''
     } else {
-      tmp += '%' + bytes[i].toString(16)
+      tmp += '%' + buf[i].toString(16)
     }
-
-    i++
   }
 
   return res + decodeUtf8Char(tmp)
 }
 
 function _asciiSlice (buf, start, end) {
-  var bytes = buf.slice(start, end)
   var ret = ''
-  for (var i = 0; i < bytes.length; i++)
-    ret += String.fromCharCode(bytes[i])
+  end = Math.min(buf.length, end);
+
+  for (var i = start; i < end; i++)
+    ret += String.fromCharCode(buf[i])
   return ret
 }