]> zoso.dev Git - buffer.git/commitdiff
adhere to padded-blocks
authorLinus Unnebäck <linus@folkdatorn.se>
Fri, 14 Aug 2015 20:29:44 +0000 (22:29 +0200)
committerLinus Unnebäck <linus@folkdatorn.se>
Fri, 14 Aug 2015 20:29:44 +0000 (22:29 +0200)
index.js

index c1b04190277279142d42de51e42a961d2eafa31d..86ef1a30b09748b8facbc31d0ef4049e4745abdd 100644 (file)
--- a/index.js
+++ b/index.js
@@ -1419,7 +1419,6 @@ function utf8ToBytes (string, units) {
           // unexpected trail
           if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)
           continue
-
         } else if (i + 1 === length) {
           // unpaired lead
           if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)
@@ -1441,7 +1440,6 @@ function utf8ToBytes (string, units) {
 
       // valid surrogate pair
       codePoint = leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00 | 0x10000
-
     } else if (leadSurrogate) {
       // valid bmp char, but last char was a lead
       if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)