| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/gavin/workspace/readjs/node_modules/fileset/lib/ |
Upload File : |
var util = require('util');
var minimatch = require('minimatch');
var glob = require('glob');
var Glob = glob.Glob;
var EventEmitter = require('events').EventEmitter;
module.exports = fileset;
// Async API
function fileset(include, exclude, options, cb) {
if (typeof exclude === 'function') cb = exclude, exclude = '';
else if (typeof options === 'function') cb = options, options = {};
var includes = (typeof include === 'string') ? include.split(' ') : include;
var excludes = (typeof exclude === 'string') ? exclude.split(' ') : exclude;
var em = new EventEmitter;
var remaining = includes.length;
var results = [];
if (!includes.length) return cb(new Error('Must provide an include pattern'));
em.includes = includes.map(function(pattern) {
return new fileset.Fileset(pattern, options)
.on('error', cb ? cb : em.emit.bind(em, 'error'))
.on('match', em.emit.bind(em, 'match'))
.on('match', em.emit.bind(em, 'include'))
.on('end', next.bind({}, pattern))
});
function next(pattern, matches) {
results = results.concat(matches);
if (!(--remaining)) {
results = results.filter(function(file) {
return !excludes.filter(function(glob) {
var match = minimatch(file, glob, { matchBase: true });
if(match) em.emit('exclude', file);
return match;
}).length;
});
if(cb) cb(null, results);
em.emit('end', results);
}
}
return em;
}
// Sync API
fileset.sync = function filesetSync(include, exclude) {
if (!exclude) exclude = '';
// includes / excludes, either an array or string separated by comma or whitespace
var includes = (typeof include === 'string') ? include.split(/[\s,]/g) : include;
var excludes = (typeof exclude === 'string') ? exclude.split(/[\s,]/g) : exclude;
// Filter out any false positive '' empty strings
includes = includes.filter(function(pattern) { return pattern; });
excludes = excludes.filter(function(pattern) { return pattern; });
// - todo: pass in glob options as last param
var options = { matchBase: true };
// First, glob match on all include patters into a single array
var results = includes.map(function(include) {
return glob.sync(include, options);
}).reduce(function(a, b) {
return a.concat(b);
}, []);
// Then filters out on any exclude match
var ignored = excludes.map(function(exclude) {
return glob.sync(exclude, options);
}).reduce(function(a, b) {
return a.concat(b);
}, []);
// And filter any exclude match
results = results.filter(function(file) {
return !ignored.filter(function(glob) {
return minimatch(file, glob, { matchBase: true });
}).length;
});
return results;
};
fileset.Fileset = function Fileset(pattern, options, cb) {
if (typeof options === 'function') cb = options, options = {};
if (!options) options = {};
Glob.call(this, pattern, options);
if (typeof cb === 'function') {
this.on('error', cb);
this.on('end', function(matches) { cb(null, matches); });
}
};
util.inherits(fileset.Fileset, Glob);