UNPKG

170 BJavaScriptView Raw
1import { lens } from './lens'
2import { nth } from './nth'
3import { update } from './update'
4
5export function lensIndex(index){
6 return lens(nth(index), update(index))
7}