Sign in
chromium
/
devtools
/
devtools-frontend.git
/
HEAD
/
.
/
node_modules
/
rambda
/
src
/
lensIndex.js
blob: 17c6ecab18b85c4161c64c7895788515aea4a5e5 [
file
] [
log
] [
blame
]
import
{
lens
}
from
'./lens.js'
import
{
nth
}
from
'./nth.js'
import
{
update
}
from
'./update.js'
export
function
lensIndex
(
index
){
return
lens
(
nth
(
index
),
update
(
index
))
}