3 Star 1 Fork 4

VTJ.PRO/node_modules

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
踩着两条虫 提交于 6年前 . first commit
'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);
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/newgateway/node_modules.git
git@gitee.com:newgateway/node_modules.git
newgateway
node_modules
node_modules
master

搜索帮助