Bump to v4.14.2.

This commit is contained in:
John-David Dalton
2016-08-07 21:23:34 -07:00
parent 6d4f76888f
commit cbf5cb1162
74 changed files with 233 additions and 256 deletions

View File

@@ -1,4 +1,3 @@
import getLength from './_getLength.js';
import isFunction from './isFunction.js';
import isLength from './isLength.js';
@@ -28,7 +27,7 @@ import isLength from './isLength.js';
* // => false
*/
function isArrayLike(value) {
return value != null && isLength(getLength(value)) && !isFunction(value);
return value != null && isLength(value.length) && !isFunction(value);
}
export default isArrayLike;