updeep-remeda/lib/withDefault.js

13 lines
278 B
JavaScript

import update from './update';
import curry from './util/curry';
function withDefault(defaultValue, updates, object) {
if (typeof object === 'undefined') {
return update(updates, defaultValue);
}
return update(updates, object);
}
export default curry(withDefault);