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