diff --git a/src/encodings/base64.js b/src/encodings/base64.js index 583ffe9..184ae43 100644 --- a/src/encodings/base64.js +++ b/src/encodings/base64.js @@ -59,8 +59,8 @@ ByteBuffer.fromBase64 = function(str, littleEndian) { bb.view[i++] = b; }); bb.limit = i; - //? } return bb; + //? } }; /** @@ -85,4 +85,4 @@ ByteBuffer.atob = function(b64) { return ByteBuffer.fromBase64(b64).toBinary(); }; -//? } \ No newline at end of file +//? } diff --git a/src/encodings/binary.js b/src/encodings/binary.js index ef9c531..cd22f11 100644 --- a/src/encodings/binary.js +++ b/src/encodings/binary.js @@ -67,8 +67,8 @@ ByteBuffer.fromBinary = function(str, littleEndian) { bb.view[i++] = charCode; } bb.limit = k; - //? } return bb; + //? } }; -//? } \ No newline at end of file +//? }