diff --git a/lodash.src.js b/lodash.src.js index e707a5ebb..0b214a929 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -9713,7 +9713,7 @@ * // => 'default' */ function get(object, path, defaultValue) { - var result = object == null ? undefined : baseGet(object, toPath(path), path + ''); + var result = object == null ? undefined : baseGet(object, toPath(path), (path + '')); return result === undefined ? defaultValue : result; } @@ -11651,7 +11651,7 @@ */ function propertyOf(object) { return function(path) { - return baseGet(object, toPath(path), path + ''); + return baseGet(object, toPath(path), (path + '')); }; }