Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
rambda
/
src
/
propIs.js
blob: ca467c1f94d6523a5f49952f4f37320457db2498 [
file
] [
log
] [
blame
] [
edit
]
import
{
curry
}
from
'./curry.js'
import
{
is
}
from
'./is.js'
function
propIsFn
(
targetPrototype
,
property
,
obj
){
return
is
(
targetPrototype
,
obj
[
property
])
}
export
const
propIs
=
curry
(
propIsFn
)