blob: 76dadd67423d1003235288d562bb72d2012059e0 [file] [log] [blame]
const findup = require('findup-sync');
module.exports = function (search, paths) {
var path;
var len = paths.length;
for (var i = 0; i < len; i++) {
if (path) {
break;
} else {
path = findup(search, {cwd: paths[i], nocase: true});
}
}
return path;
};