``` javascript import { update, identity } from 'lodash/fp' const original = { f: () => 1 } const updated = update('f', identity, original) ``` ```updated.f``` is an empty object instead of ```f```