Skip to content

Commit

Permalink
Fix lint problem
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed May 9, 2015
1 parent 14258e5 commit 6a1fbbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -794,7 +794,7 @@ function parseFilename(headerValue) {
filename = filename.replace(/&#([\d]{4});/g, function(m, code) {
return String.fromCharCode(code);
});
return filename.substr(filename.lastIndexOf('\\') + 1);;
return filename.substr(filename.lastIndexOf('\\') + 1);
}

function lower(c) {
Expand Down

0 comments on commit 6a1fbbf

Please sign in to comment.