mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-12 03:47:50 +00:00
Change "Iterator" typo to "Iteratee" in docs. [ci skip]
This commit is contained in:
@@ -2168,7 +2168,7 @@
|
|||||||
/**
|
/**
|
||||||
* The base implementation of `baseForIn` and `baseForOwn` which iterates
|
* The base implementation of `baseForIn` and `baseForOwn` which iterates
|
||||||
* over `object` properties returned by `keysFunc` invoking `iteratee` for
|
* over `object` properties returned by `keysFunc` invoking `iteratee` for
|
||||||
* each property. Iterator functions may exit iteration early by explicitly
|
* each property. Iteratee functions may exit iteration early by explicitly
|
||||||
* returning `false`.
|
* returning `false`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
@@ -6403,7 +6403,7 @@
|
|||||||
/**
|
/**
|
||||||
* Iterates over elements of `collection` invoking `iteratee` for each element.
|
* Iterates over elements of `collection` invoking `iteratee` for each element.
|
||||||
* The `iteratee` is bound to `thisArg` and invoked with three arguments:
|
* The `iteratee` is bound to `thisArg` and invoked with three arguments:
|
||||||
* (value, index|key, collection). Iterator functions may exit iteration early
|
* (value, index|key, collection). Iteratee functions may exit iteration early
|
||||||
* by explicitly returning `false`.
|
* by explicitly returning `false`.
|
||||||
*
|
*
|
||||||
* **Note:** As with other "Collections" methods, objects with a `length` property
|
* **Note:** As with other "Collections" methods, objects with a `length` property
|
||||||
@@ -9215,7 +9215,7 @@
|
|||||||
/**
|
/**
|
||||||
* Iterates over own and inherited enumerable properties of an object invoking
|
* Iterates over own and inherited enumerable properties of an object invoking
|
||||||
* `iteratee` for each property. The `iteratee` is bound to `thisArg` and invoked
|
* `iteratee` for each property. The `iteratee` is bound to `thisArg` and invoked
|
||||||
* with three arguments: (value, key, object). Iterator functions may exit
|
* with three arguments: (value, key, object). Iteratee functions may exit
|
||||||
* iteration early by explicitly returning `false`.
|
* iteration early by explicitly returning `false`.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
@@ -9271,7 +9271,7 @@
|
|||||||
/**
|
/**
|
||||||
* Iterates over own enumerable properties of an object invoking `iteratee`
|
* Iterates over own enumerable properties of an object invoking `iteratee`
|
||||||
* for each property. The `iteratee` is bound to `thisArg` and invoked with
|
* for each property. The `iteratee` is bound to `thisArg` and invoked with
|
||||||
* three arguments: (value, key, object). Iterator functions may exit iteration
|
* three arguments: (value, key, object). Iteratee functions may exit iteration
|
||||||
* early by explicitly returning `false`.
|
* early by explicitly returning `false`.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
@@ -9781,7 +9781,7 @@
|
|||||||
* `accumulator` object which is the result of running each of its own enumerable
|
* `accumulator` object which is the result of running each of its own enumerable
|
||||||
* properties through `iteratee`, with each invocation potentially mutating
|
* properties through `iteratee`, with each invocation potentially mutating
|
||||||
* the `accumulator` object. The `iteratee` is bound to `thisArg` and invoked
|
* the `accumulator` object. The `iteratee` is bound to `thisArg` and invoked
|
||||||
* with four arguments: (accumulator, value, key, object). Iterator functions
|
* with four arguments: (accumulator, value, key, object). Iteratee functions
|
||||||
* may exit iteration early by explicitly returning `false`.
|
* may exit iteration early by explicitly returning `false`.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
|
|||||||
Reference in New Issue
Block a user