• Home
  • Raw
  • Download

Lines Matching full:glob

41 module.exports = glob
65 function glob (pattern, options, cb) { function
71 throw new TypeError('callback provided to sync glob')
75 return new Glob(pattern, options, cb)
78 glob.sync = globSync
79 var GlobSync = glob.GlobSync = globSync.GlobSync
82 glob.glob = glob
97 glob.hasMagic = function (pattern, options_) {
101 var g = new Glob(pattern, options)
118 glob.Glob = Glob
119 inherits(Glob, EE)
120 function Glob (pattern, options, cb) { class
128 throw new TypeError('callback provided to sync glob')
132 if (!(this instanceof Glob))
133 return new Glob(pattern, options, cb)
188 Glob.prototype._finish = function () {
189 assert(this instanceof Glob)
200 Glob.prototype._realpath = function () {
220 Glob.prototype._realpathSet = function (index, cb) {
254 Glob.prototype._mark = function (p) {
258 Glob.prototype._makeAbs = function (f) {
262 Glob.prototype.abort = function () {
267 Glob.prototype.pause = function () {
274 Glob.prototype.resume = function () {
298 Glob.prototype._process = function (pattern, index, inGlobStar, cb) {
299 assert(this instanceof Glob)
368 Glob.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar, cb) {
375 Glob.prototype._processReaddir2 = function (prefix, read, abs, remain, index, inGlobStar, entries, …
454 Glob.prototype._emitMatch = function (index, e) {
492 Glob.prototype._readdirInGlobStar = function (abs, cb) {
525 Glob.prototype._readdir = function (abs, inGlobStar, cb) {
559 Glob.prototype._readdirEntries = function (abs, entries, cb) {
581 Glob.prototype._readdirError = function (f, er, cb) {
587 case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205
616 console.error('glob error', er)
623 Glob.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar, cb) {
631 Glob.prototype._processGlobStar2 = function (prefix, read, abs, remain, index, inGlobStar, entries,…
671 Glob.prototype._processSimple = function (prefix, index, cb) {
679 Glob.prototype._processSimple2 = function (prefix, index, er, exists, cb) {
710 Glob.prototype._stat = function (f, cb) {
769 Glob.prototype._stat2 = function (f, abs, er, stat, cb) {