1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/liftoff/lib/file_search.js
2025-08-25 17:48:13 +08:00

15 lines
286 B
JavaScript

var 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;
};