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