diff --git a/lodash.src.js b/lodash.src.js index 23b36f67c..34bc16fff 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -9584,7 +9584,7 @@ length = object.length; } if ((typeof Ctor == 'function' && Ctor.prototype === object) || - (typeof object == 'function' ? lodash.support.enumPrototypes : (length && isLength(length)))) { + (typeof object == 'function' ? lodash.support.enumPrototypes : isLength(length))) { return shimKeys(object); } return isObject(object) ? nativeKeys(object) : [];