(collection)
| 1446 | }; |
| 1447 | var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1; |
| 1448 | var isArrayLike = function(collection) { |
| 1449 | var length = collection && collection.length; |
| 1450 | return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX; |
| 1451 | }; |
| 1452 | _.each = _.forEach = function(obj, iteratee, context) { |
| 1453 | iteratee = optimizeCb(iteratee, context); |
| 1454 | var i, length; |
no outgoing calls
no test coverage detected