Sign in
chromium
/
devtools
/
devtools-frontend
/
b3cd0a4f0ce68bbba2f63ebed0ec8564643eda2e
/
.
/
node_modules
/
ramda
/
es
/
internal
/
_includesWith.js
blob: e13a2140ccf6fbe0c111006bd53c36bf62faea1a [
file
] [
log
] [
blame
]
export
default
function
_includesWith
(
pred
,
x
,
list
)
{
var
idx
=
0
;
var
len
=
list
.
length
;
while
(
idx
<
len
)
{
if
(
pred
(
x
,
list
[
idx
]))
{
return
true
;
}
idx
+=
1
;
}
return
false
;
}