'a'
mh-two-thousand-and-two
2024-04-12 44d2c92345cd156a59fc327b3060292a282d2893
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
'use strict';
const path = require('path');
const pathType = require('path-type');
 
const getExtensions = extensions => extensions.length > 1 ? `{${extensions.join(',')}}` : extensions[0];
 
const getPath = (filepath, cwd) => {
    const pth = filepath[0] === '!' ? filepath.slice(1) : filepath;
    return path.isAbsolute(pth) ? pth : path.join(cwd, pth);
};
 
const addExtensions = (file, extensions) => {
    if (path.extname(file)) {
        return `**/${file}`;
    }
 
    return `**/${file}.${getExtensions(extensions)}`;
};
 
const getGlob = (dir, opts) => {
    if (opts.files && !Array.isArray(opts.files)) {
        throw new TypeError(`Expected \`files\` to be of type \`Array\` but received type \`${typeof opts.files}\``);
    }
 
    if (opts.extensions && !Array.isArray(opts.extensions)) {
        throw new TypeError(`Expected \`extensions\` to be of type \`Array\` but received type \`${typeof opts.extensions}\``);
    }
 
    if (opts.files && opts.extensions) {
        return opts.files.map(x => path.join(dir, addExtensions(x, opts.extensions)));
    }
 
    if (opts.files) {
        return opts.files.map(x => path.join(dir, `**/${x}`));
    }
 
    if (opts.extensions) {
        return [path.join(dir, `**/*.${getExtensions(opts.extensions)}`)];
    }
 
    return [path.join(dir, '**')];
};
 
module.exports = (input, opts) => {
    opts = Object.assign({cwd: process.cwd()}, opts);
 
    if (typeof opts.cwd !== 'string') {
        return Promise.reject(new TypeError(`Expected \`cwd\` to be of type \`string\` but received type \`${typeof opts.cwd}\``));
    }
 
    return Promise.all([].concat(input).map(x => pathType.dir(getPath(x, opts.cwd))
        .then(isDir => isDir ? getGlob(x, opts) : x)))
        .then(globs => [].concat.apply([], globs));
};
 
module.exports.sync = (input, opts) => {
    opts = Object.assign({cwd: process.cwd()}, opts);
 
    if (typeof opts.cwd !== 'string') {
        throw new TypeError(`Expected \`cwd\` to be of type \`string\` but received type \`${typeof opts.cwd}\``);
    }
 
    const globs = [].concat(input).map(x => pathType.dirSync(getPath(x, opts.cwd)) ? getGlob(x, opts) : x);
    return [].concat.apply([], globs);
};