mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
perfomance fixes, eslint fixes (#4482)
This commit is contained in:
committed by
John-David Dalton
parent
29eb5713f5
commit
898b378f06
@@ -25,7 +25,7 @@ import isArrayLike from './isArrayLike.js'
|
||||
*/
|
||||
function invokeMap(collection, path, args) {
|
||||
let index = -1
|
||||
const isFunc = typeof path == 'function'
|
||||
const isFunc = typeof path === 'function'
|
||||
const result = isArrayLike(collection) ? new Array(collection.length) : []
|
||||
|
||||
baseEach(collection, (value) => {
|
||||
|
||||
Reference in New Issue
Block a user