7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
import ifElse from './ifElse'
|
|
import curry from './util/curry'
|
|
|
|
export default curry((predicate, trueUpdates, object) =>
|
|
ifElse(predicate, trueUpdates, x => x, object)
|
|
)
|