]> zoso.dev Git - buffer.git/commitdiff
remove redundant code unit size check
authorJesse Tane <jesse.tane@gmail.com>
Fri, 13 Feb 2015 21:39:23 +0000 (16:39 -0500)
committerJesse Tane <jesse.tane@gmail.com>
Fri, 13 Feb 2015 21:39:23 +0000 (16:39 -0500)
index.js

index a2c9324531770504a96141bbd6b194150556f7f7..a526681612f56524351f30082a63930f2f2e684e 100644 (file)
--- a/index.js
+++ b/index.js
@@ -371,7 +371,7 @@ function base64Write (buf, string, offset, length) {
 }
 
 function utf16leWrite (buf, string, offset, length) {
-  var charsWritten = blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length, 2)
+  var charsWritten = blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)
   return charsWritten
 }
 
@@ -1292,8 +1292,7 @@ function base64ToBytes (str) {
   return base64.toByteArray(base64clean(str))
 }
 
-function blitBuffer (src, dst, offset, length, unitSize) {
-  if (unitSize) length -= length % unitSize
+function blitBuffer (src, dst, offset, length) {
   for (var i = 0; i < length; i++) {
     if ((i + offset >= dst.length) || (i >= src.length))
       break