| D | glob.js | 339 var remain = pattern.slice(n) 361 var isGlobStar = remain[0] === minimatch.GLOBSTAR 363 this._processGlobStar(prefix, read, abs, remain, index, inGlobStar, cb) 365 this._processReaddir(prefix, read, abs, remain, index, inGlobStar, cb) 368 Glob.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar, cb) { argument 371 return self._processReaddir2(prefix, read, abs, remain, index, inGlobStar, entries, cb) 375 Glob.prototype._processReaddir2 = function (prefix, read, abs, remain, index, inGlobStar, entries, … argument 383 var pn = remain[0] 415 if (remain.length === 1 && !this.mark && !this.stat) { 439 remain.shift() [all …]
|