Skip to content

Instantly share code, notes, and snippets.

@hugozap
Forked from anonymous/gist:4416767
Last active December 10, 2015 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugozap/4416811 to your computer and use it in GitHub Desktop.
Save hugozap/4416811 to your computer and use it in GitHub Desktop.
var minimatch = require('minimatch');
minimatch('myfile.js',"**.js"); //true
glob('**/*.js',function(er,files){
console.log(files.length+' found');
});
minimatch('/user/local/bin','/**/bin'); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment