1 var baseUpdate = require(
'./_baseUpdate'),
2 castFunction = require(
'./_castFunction');
28 function updateWith(
object, path, updater, customizer) {
29 customizer = typeof customizer ==
'function' ? customizer : undefined;
30 return object == null ?
object : baseUpdate(
object, path, castFunction(updater), customizer);
33 module.exports = updateWith;