Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
rambda
/
src
/
has.js
blob: 3cafc7693cb6d2deb3f5176cedaebcff2c3ac7e9 [
file
] [
log
] [
blame
] [
edit
]
export
function
has
(
prop
,
obj
){
if
(
arguments
.
length
===
1
)
return
_obj
=>
has
(
prop
,
_obj
)
if
(!
obj
)
return
false
return
obj
.
hasOwnProperty
(
prop
)
}