UNPKG

mist

Version:
41 lines (34 loc) 749 B
var glob, globCache, globStatCache, globSymCache; glob = require('glob'); globCache = {}; globStatCache = {}; globSymCache = {}; module.exports.performGlob = function(pattern, mistdir) { var globOpts; globOpts = { cwd: mistdir, root: mistdir, dot: false, nomount: false, nosort: true, silent: true, strict: false, cache: globCache, statCache: globStatCache, symlinks: globSymCache, nounique: false, nonull: true, debug: false, nobrace: false, noglobstar: false, noext: false, nocase: false, matchBase: false, nodir: true, follow: true, nonegate: true, nocomment: true }; return glob.sync(pattern, globOpts); }; //# sourceMappingURL=globber.js.map