Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
node_modules
/
rambda
/
src
/
lensPath.js
blob: df445d0383def86e06e1f08b57889bb736a7ff3c [
file
]
import
{
assocPath
}
from
'./assocPath.js'
import
{
lens
}
from
'./lens.js'
import
{
path
}
from
'./path.js'
export
function
lensPath
(
key
){
return
lens
(
path
(
key
),
assocPath
(
key
))
}