Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/main
/
.
/
node_modules
/
rambda
/
src
/
hasPath.js
blob: 76c479e4ec6c7c813a8beda09bfe273b22c95588 [
file
] [
log
] [
blame
] [
edit
]
import
{
path
}
from
'./path.js'
export
function
hasPath
(
pathInput
,
obj
){
if
(
arguments
.
length
===
1
){
return
objHolder
=>
hasPath
(
pathInput
,
objHolder
)
}
return
path
(
pathInput
,
obj
)
!==
undefined
}