mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
Bump to v4.6.0.
This commit is contained in:
@@ -27,8 +27,7 @@ var getLength = require('./_getLength'),
|
||||
* // => false
|
||||
*/
|
||||
function isArrayLike(value) {
|
||||
return value != null &&
|
||||
!(typeof value == 'function' && isFunction(value)) && isLength(getLength(value));
|
||||
return value != null && isLength(getLength(value)) && !isFunction(value);
|
||||
}
|
||||
|
||||
module.exports = isArrayLike;
|
||||
|
||||
Reference in New Issue
Block a user