From 13ee78a9c9c3f61e6e874a9c3d5fb36023aa14ff Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 28 Jan 2015 01:42:12 -0800 Subject: [PATCH] Remove `baseToString` use in `baseCallback`. --- lodash.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.src.js b/lodash.src.js index fae5f2d4c..5c5d4342d 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -1801,7 +1801,7 @@ // Handle "_.property" and "_.matches" style callback shorthands. return type == 'object' ? baseMatches(func, !argCount) - : baseProperty(argCount ? baseToString(func) : func); + : baseProperty(func + ''); } /**