mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 19:07:49 +00:00
Cleanup JSDoc comments.
Former-commit-id: ce8e7885528c1a7097cf6b73a713c960a20f85f6
This commit is contained in:
@@ -570,7 +570,7 @@
|
|||||||
* @example
|
* @example
|
||||||
*
|
*
|
||||||
* _.every([true, 1, null, 'yes'], Boolean);
|
* _.every([true, 1, null, 'yes'], Boolean);
|
||||||
* => false
|
* // => false
|
||||||
*/
|
*/
|
||||||
var every = createIterator(baseIteratorOptions, everyIteratorOptions);
|
var every = createIterator(baseIteratorOptions, everyIteratorOptions);
|
||||||
|
|
||||||
@@ -639,7 +639,7 @@
|
|||||||
* // => alerts each number in turn
|
* // => alerts each number in turn
|
||||||
*
|
*
|
||||||
* _([1, 2, 3]).forEach(function(num) { alert(num); }).join(',');
|
* _([1, 2, 3]).forEach(function(num) { alert(num); }).join(',');
|
||||||
* // => alerts each number in turn and returns "1,2,3"
|
* // => alerts each number in turn and returns '1,2,3'
|
||||||
*/
|
*/
|
||||||
var forEach = createIterator(baseIteratorOptions, {
|
var forEach = createIterator(baseIteratorOptions, {
|
||||||
'top': 'if (thisArg) callback = bind(callback, thisArg)'
|
'top': 'if (thisArg) callback = bind(callback, thisArg)'
|
||||||
|
|||||||
Reference in New Issue
Block a user