mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-11 19:37:49 +00:00
Remove unnecessary parseFloat from baseAt.
This commit is contained in:
@@ -1795,7 +1795,6 @@
|
|||||||
while(++index < propsLength) {
|
while(++index < propsLength) {
|
||||||
var key = props[index];
|
var key = props[index];
|
||||||
if (isArr) {
|
if (isArr) {
|
||||||
key = parseFloat(key);
|
|
||||||
result[index] = isIndex(key, length) ? collection[key] : undefined;
|
result[index] = isIndex(key, length) ? collection[key] : undefined;
|
||||||
} else {
|
} else {
|
||||||
result[index] = collection[key];
|
result[index] = collection[key];
|
||||||
|
|||||||
Reference in New Issue
Block a user