Bump to v4.10.0.

This commit is contained in:
John-David Dalton
2016-04-10 22:53:08 -07:00
parent 57f1942947
commit 76b289fe6e
52 changed files with 308 additions and 291 deletions

View File

@@ -1,4 +1,4 @@
define(['./_baseCastFunction', './_baseUpdate'], function(baseCastFunction, baseUpdate) {
define(['./_baseUpdate', './_castFunction'], function(baseUpdate, castFunction) {
/**
* This method is like `_.set` except that accepts `updater` to produce the
@@ -28,7 +28,7 @@ define(['./_baseCastFunction', './_baseUpdate'], function(baseCastFunction, base
* // => 0
*/
function update(object, path, updater) {
return object == null ? object : baseUpdate(object, path, baseCastFunction(updater));
return object == null ? object : baseUpdate(object, path, castFunction(updater));
}
return update;