Commit node_modules.

For @billywhizz :)

And cause it's just an all around good idea for command-line apps.
This commit is contained in:
Nathan Rajlich 2012-02-10 23:44:09 -08:00
parent d39620999f
commit 24bde139e1
255 changed files with 20261 additions and 0 deletions

9
node_modules/glob/examples/g.js generated vendored Normal file
View file

@ -0,0 +1,9 @@
var Glob = require("../").Glob
var pattern = "test/a/**/[cg]/../[cg]"
console.log(pattern)
var mg = new Glob(pattern, {mark: true, sync:true}, function (er, matches) {
console.log("matches", matches)
})
console.log("after")