13 lines
273 B
JavaScript
13 lines
273 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)
|