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