Skip to main content
Module

x/rambda/lensProp.js

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