Skip to content

Commit 4369593

Browse files
committed
Auto-generated commit
1 parent 0759e0f commit 4369593

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/factory.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ var limit = require( './limit.js' );
3737
*
3838
* - 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`).
3939
*
40-
*
4140
* @param {Options} [options] - function options
4241
* @param {*} [options.thisArg] - execution context
4342
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time

lib/limit.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ var debug = logger( 'group-by-async:limit' );
3939
* - We need to cache the collection value to prevent the edge case where, during the invocation of the indicator function, the element at index `i` is swapped for some other value. For some, that might be a feature; here, we take the stance that one should be less clever.
4040
* - Checking for an "own" property is necessary to guard against the edge case where an indicator function returns a group identifier which matches a method or property on the `Object` prototype.
4141
*
42-
*
4342
* @private
4443
* @param {Collection} collection - input collection
4544
* @param {Options} opts - function options

lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ var factory = require( './factory.js' );
3232
*
3333
* - 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`).
3434
*
35-
*
3635
* @param {Collection} collection - input collection
3736
* @param {Options} [options] - function options
3837
* @param {*} [options.thisArg] - execution context

0 commit comments

Comments
 (0)