b8ca7f5407
Fixes #35
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
import ifElse from './ifElse';
|
|
import curry from './util/curry';
|
|
|
|
export default curry((predicate, trueUpdates, object) =>
|
|
ifElse(predicate, trueUpdates, x => x, object)
|
|
);
|