Skip to content

Commit

Permalink
duh, don't need .coffee
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhandley committed May 4, 2012
1 parent c1f4275 commit 4631adb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ module.exports = function(dir, basenames) {
if (arguments.length == 1) {
fs.readdirSync(dir).forEach(function(filename) {

if ((filename === 'index.js') ||
(filename === 'index.coffee') ||
(filename[0] === '_')) {
if ((filename === 'index.js') || (filename[0] === '_')) {
return;
}

Expand Down

0 comments on commit 4631adb

Please sign in to comment.