Skip to content

Commit

Permalink
Fix test fail in es builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Aug 4, 2016
1 parent 21fba2d commit d7951db
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lodash.js
Original file line number Diff line number Diff line change
Expand Up @@ -3688,6 +3688,9 @@
* @returns {Object} Returns `object`.
*/
function baseSet(object, path, value, customizer) {
if (!isObject(object)) {
return object;
}
path = isKey(path, object) ? [path] : castPath(path);

var index = -1,
Expand Down

0 comments on commit d7951db

Please sign in to comment.