# glob
Match files using the patterns the shell uses, like stars and stuff.
使用shell使用的模式匹配文件,如星号等。(可用globby
代替)
# 用法
var glob = require("glob")
// options is optional
glob("**/*.js", options, function (er, files) {
// files is an array of filenames.
// If the `nonull` option is set, and nothing
// was found, then files is ["**/*.js"]
// er is an error object or null.
})