Skip to content

Commit

Permalink
fixed Code Climate issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimminich committed Sep 30, 2014
1 parent 7b9b7a3 commit afde2c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions bower_install.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*jslint node: true */
'use strict';

var bower = require('bower');

bower.commands.install()
Expand Down
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var crypto = require('crypto');

function hash(data) {
return crypto.createHash("md5").update(data).digest("hex");
return crypto.createHash('md5').update(data).digest('hex');
}
exports.hash = hash;

Expand Down

0 comments on commit afde2c7

Please sign in to comment.