Skip to content

Commit 389d09a

Browse files
committed
Auto-generated commit
1 parent 5a1fc13 commit 389d09a

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

.github/.keepalive

-1
This file was deleted.

lib/factory.js

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ var limit = require( './limit.js' );
3838
* - If a provided function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling. Note, however, that the function may have mutated an input collection during prior invocations, resulting in a partially mutated collection.
3939
* - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`).
4040
*
41-
*
4241
* @param {Options} [options] - function options
4342
* @param {*} [options.thisArg] - execution context
4443
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time

lib/main.js

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ var factory = require( './factory.js' );
3333
* - If a provided function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling. Note, however, that the function may have mutated an input collection during prior invocations, resulting in a partially mutated collection.
3434
* - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`).
3535
*
36-
*
3736
* @param {Collection} collection - input collection
3837
* @param {Options} [options] - function options
3938
* @param {*} [options.thisArg] - execution context

0 commit comments

Comments
 (0)