Skip to content

Commit d2a38e4

Browse files
committed
Minor JSLint compatibility update.
1 parent 1173a6a commit d2a38e4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

md5.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,15 +255,13 @@
255255
if (!key) {
256256
if (!raw) {
257257
return hex_md5(string);
258-
} else {
259-
return raw_md5(string);
260258
}
259+
return raw_md5(string);
261260
}
262261
if (!raw) {
263262
return hex_hmac_md5(key, string);
264-
} else {
265-
return raw_hmac_md5(key, string);
266263
}
264+
return raw_hmac_md5(key, string);
267265
}
268266

269267
if (typeof define === 'function' && define.amd) {

0 commit comments

Comments
 (0)