Skip to content

Commit

Permalink
Revert "Use graceful-fs if available"
Browse files Browse the repository at this point in the history
This reverts commit f09292b.
  • Loading branch information
isaacs committed Jun 27, 2015
1 parent 38ff16c commit 6071f3a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions glob.js
Expand Up @@ -40,12 +40,7 @@

module.exports = glob

var fs
try {
fs = require('graceful-fs')
} catch (er) {
fs = require('fs')
}
var fs = require('fs')
var minimatch = require('minimatch')
var Minimatch = minimatch.Minimatch
var inherits = require('inherits')
Expand Down

0 comments on commit 6071f3a

Please sign in to comment.