Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80713 views
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")
10
11