Remove internal isLength test since it's exposed now.

This commit is contained in:
John-David Dalton
2015-10-31 12:23:03 -07:00
parent c142cfc81d
commit 4bc35e9ed4
2 changed files with 7 additions and 5 deletions

View File

@@ -276,13 +276,11 @@
require(getConfig(), [
'lodash/internal/baseEach',
'lodash/internal/isIndex',
'lodash/internal/isIterateeCall',
'lodash/internal/isLength'
], function(baseEach, isIndex, isIterateeCall, isLength) {
'lodash/internal/isIterateeCall'
], function(baseEach, isIndex, isIterateeCall) {
lodash._baseEach = baseEach;
lodash._isIndex = isIndex;
lodash._isIterateeCall = isIterateeCall;
lodash._isLength = isLength;
loadTests();
});
} else {