Skip to content

Commit

Permalink
style(init): make jshint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina committed May 6, 2013
1 parent 7208249 commit 0d3d97e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,9 @@ var getReplacementsFromAnswers = function(answers, basePath) {
};
};


var COFFEE_REGEXP = /\.coffee$/;
var isCoffeeFile = function(filename) {
return /\.coffee$/.test(filename);
return COFFEE_REGEXP.test(filename);
};


Expand Down

0 comments on commit 0d3d97e

Please sign in to comment.