diff --git a/index.html b/index.html index 04c878ad0..685706fee 100644 --- a/index.html +++ b/index.html @@ -340,16 +340,14 @@ var odds = _.reject([1, 2, 3, 4, 5, 6], function(num){ return num % 2 == 0; });
- all_.all(list, [iterator], [context])
+ all_.all(list, iterator, [context])
Alias: every
Returns true if all of the values in the list pass the iterator
- truth test. If an iterator is not provided, the truthy value of
- the element will be used instead. Delegates to the native method every, if
- present.
+ truth test. Delegates to the native method every, if present.
-_.all([true, 1, null, 'yes']); +_.all([true, 1, null, 'yes'], _.identity); => false