Remove baseToString use in baseCallback.

This commit is contained in:
jdalton
2015-01-28 01:42:12 -08:00
parent acaa07cf7c
commit 13ee78a9c9

View File

@@ -1801,7 +1801,7 @@
// Handle "_.property" and "_.matches" style callback shorthands. // Handle "_.property" and "_.matches" style callback shorthands.
return type == 'object' return type == 'object'
? baseMatches(func, !argCount) ? baseMatches(func, !argCount)
: baseProperty(argCount ? baseToString(func) : func); : baseProperty(func + '');
} }
/** /**