node-gyp/node_modules/glob/examples/usr-local.js
Nathan Rajlich 24bde139e1 Commit node_modules.
For @billywhizz :)

And cause it's just an all around good idea for command-line apps.
2012-02-10 23:44:09 -08:00

9 lines
218 B
JavaScript

var Glob = require("../").Glob
var pattern = "{./*/*,/*,/usr/local/*}"
console.log(pattern)
var mg = new Glob(pattern, {mark: true}, function (er, matches) {
console.log("matches", matches)
})
console.log("after")