forked from robrich/gulp-match
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
67 lines (57 loc) · 1.75 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
'use strict';
var minimatch = require('minimatch');
module.exports = function (file, condition, options) {
if (!file) {
throw new Error('gulp-match: vinyl file required');
}
if (typeof condition === 'boolean') {
return condition;
}
if (typeof condition === 'function') {
return !!condition(file);
}
if (typeof condition === 'string' && condition.match(/^\*\.[a-z\.]+$/)) {
var newCond = condition.substring(1).replace(/\./g,'\\.')+'$';
condition = new RegExp(newCond);
}
if (typeof condition === 'object' && typeof condition.test === 'function' && condition.hasOwnProperty('source')) {
// FRAGILE: ASSUME: it's a regex
return condition.test(file.relative);
}
if (typeof condition === 'string') {
// FRAGILE: ASSUME: it's a minimatch expression
return minimatch(file.relative, condition, options);
}
if (Array.isArray(condition)) {
// FRAGILE: ASSUME: it's a minimatch expression
if (!condition.length) {
throw new Error('gulp-match: empty glob array');
}
var i = 0, step, ret = false;
for (i = 0; i < condition.length; i++) {
step = condition[i];
if (step[0] === '!') {
if (minimatch(file.relative, step.slice(1), options)) {
return false;
}
} else if (minimatch(file.relative, step, options)) {
ret = true;
}
}
return ret;
}
if (typeof condition === 'object') {
if (condition.hasOwnProperty('isFile') || condition.hasOwnProperty('isDirectory')) {
if (!file.hasOwnProperty('stat')) {
return false; // TODO: what's a better status?
}
if (condition.hasOwnProperty('isFile')) {
return (condition.isFile === file.stat.isFile());
}
if (condition.hasOwnProperty('isDirectory')) {
return (condition.isDirectory === file.stat.isDirectory());
}
}
}
return !!condition;
};