Skip to content

Commit

Permalink
chore: remove semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksrandall committed Oct 8, 2020
1 parent c7b68dd commit c772ea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -341,8 +341,8 @@ function prioritize (str) {
* @private
*/
function sortEncodings (a, b) {
var al = a.toLowerCase();
var bl = b.toLowerCase();
var al = a.toLowerCase()
var bl = b.toLowerCase()
if (al.indexOf('br') >= 0) {
return -1
}
Expand Down

0 comments on commit c772ea4

Please sign in to comment.