Initial commit
[yaffs-website] / node_modules / globule / node_modules / glob / examples / usr-local.js
1 var Glob = require("../").Glob
2
3 var pattern = "{./*/*,/*,/usr/local/*}"
4 console.log(pattern)
5
6 var mg = new Glob(pattern, {mark: true}, function (er, matches) {
7   console.log("matches", matches)
8 })
9 console.log("after")