Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
liftup
/
lib
/
file_search.js
blob: d95121d7db10f4e6a0545cf477cd31821487b068 [
file
] [
log
] [
blame
]
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
;
};