usr-local.js 218 B

123456789
  1. var Glob = require("../").Glob
  2. var pattern = "{./*/*,/*,/usr/local/*}"
  3. console.log(pattern)
  4. var mg = new Glob(pattern, {mark: true}, function (er, matches) {
  5. console.log("matches", matches)
  6. })
  7. console.log("after")