Sign in
chromium
/
devtools
/
devtools-frontend
/
d5a3755f19aa248cffbcf61f1628362aaa6c0377
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_has.js
blob: 40c109259436a926d0e7e51b24349f8872c05a04 [
file
] [
log
] [
blame
]
function
_has
(
prop
,
obj
)
{
return
Object
.
prototype
.
hasOwnProperty
.
call
(
obj
,
prop
);
}
module
.
exports
=
_has
;