blob: df445d0383def86e06e1f08b57889bb736a7ff3c [file] [log] [blame] [edit]
import { assocPath } from './assocPath.js'
import { lens } from './lens.js'
import { path } from './path.js'
export function lensPath(key){
return lens(path(key), assocPath(key))
}