Skip to main content
Module

x/rambda/lensPath.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { assocPath } from './assocPath'import { lens } from './lens'import { path } from './path'
export function lensPath(key){ return lens(path(key), assocPath(key))}