Skip to main content
Module

x/rambda/source/lensIndex.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {lens} from './lens'import {nth} from './nth'import {update} from './update'
export function lensIndex(index) { return lens(nth(index), update(index))}