UNPKG

foci

Version:

Lens-like functionality with a lodash-style interface.

9 lines (8 loc) 203 B
// Attr :: Functor f => String -> (a -> f a) -> b -> f b export default name => ( f => ( obj => do { f(obj[name]).map(newValue =>({...obj, [name]: newValue})) } ) )