mirror of
https://github.com/atom/atom.git
synced 2026-01-14 09:27:57 -05:00
22 lines
436 B
JavaScript
22 lines
436 B
JavaScript
'use strict';
|
|
|
|
const glob = require('glob');
|
|
|
|
module.exports = function(globPaths) {
|
|
return Promise.all(globPaths.map(g => expandGlobPath(g))).then(paths =>
|
|
paths.reduce((a, b) => a.concat(b), [])
|
|
);
|
|
};
|
|
|
|
function expandGlobPath(globPath) {
|
|
return new Promise((resolve, reject) => {
|
|
glob(globPath, (error, paths) => {
|
|
if (error) {
|
|
reject(error);
|
|
} else {
|
|
resolve(paths);
|
|
}
|
|
});
|
|
});
|
|
}
|