lib: jslint string_decoder.js
authorFedor Indutny <fedor@indutny.com>
Tue, 15 Jul 2014 08:43:59 +0000 (12:43 +0400)
committerFedor Indutny <fedor@indutny.com>
Tue, 15 Jul 2014 08:43:59 +0000 (12:43 +0400)
lib/string_decoder.js

index 4a45833..fd11e51 100644 (file)
@@ -82,8 +82,8 @@ StringDecoder.prototype.write = function(buffer) {
   while (this.charLength) {
     // determine how many remaining bytes this buffer has to offer for this char
     var available = (buffer.length >= this.charLength - this.charReceived) ?
-                this.charLength - this.charReceived :
-                buffer.length;
+        this.charLength - this.charReceived :
+        buffer.length;
 
     // add the new bytes to the char buffer
     buffer.copy(this.charBuffer, this.charReceived, 0, available);