Skip to content

Commit

Permalink
Removed some trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Stites committed Dec 11, 2013
1 parent 13dc522 commit 2a11ca5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions md5.js
Expand Up @@ -7,9 +7,9 @@
md5 = function (message, options) {
// Convert to byte array
if (message.constructor == String)
if (options && options.encoding === 'binary')
if (options && options.encoding === 'binary')
message = bin.stringToBytes(message);
else
else
message = utf8.stringToBytes(message);
else if (typeof Buffer != 'undefined' &&
typeof Buffer.isBuffer == 'function' && Buffer.isBuffer(message))
Expand Down

0 comments on commit 2a11ca5

Please sign in to comment.