Skip to content

Commit

Permalink
docs: remove empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Aug 2, 2023
1 parent ad751be commit 7ae2a48
Show file tree
Hide file tree
Showing 47 changed files with 0 additions and 47 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ var limit = require( './limit.js' );
*
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ var debug = logger( 'bifurcate-by-async:limit' );
*
* - We need to cache the collection value to prevent the edge case where, during the invocation of the predicate 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.
*
*
* @private
* @param {Collection} collection - input collection
* @param {Options} opts - function options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ var factory = require( './factory.js' );
*
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ var limit = require( './limit.js' );
*
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/count-by/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ var factory = require( './factory.js' );
*
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/every-by/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - 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.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - 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.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - 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.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/for-each/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - 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.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ var limit = require( './limit.js' );
*
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/group-by/lib/limit.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ var debug = logger( 'group-by-async:limit' );
* - 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.
* - 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.
*
*
* @private
* @param {Collection} collection - input collection
* @param {Options} opts - function options
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/group-by/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ var factory = require( './factory.js' );
*
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - 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.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - 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.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/inmap/lib/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - 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.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/inmap/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - 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.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - 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.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - 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.
* - 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`).
*
*
* @param {Function} fcn - function to invoke
* @param {NonNegativeInteger} n - number of function invocations
* @param {Options} [options] - function options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ var limit = require( './limit.js' );
* - Iteration and insertion order are **not** guaranteed.
* - The function only operates on own properties, not inherited properties.
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/map-keys/lib/limit.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ var debug = logger( 'map-values-async:limit' );
* - Iteration order is **not** guaranteed.
* - We need to cache an object value to prevent the edge case where, during the invocation of the transform function, the value corresponding to a particular key is swapped for some other value. For some, that might be a feature; here, we take the stance that one should be less clever.
*
*
* @private
* @param {Object} obj - source object
* @param {Options} opts - function options
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/map-keys/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ var factory = require( './factory.js' );
* - Iteration and insertion order are **not** guaranteed.
* - The function only operates on own properties, not inherited properties.
*
*
* @param {Object} obj - source object
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ var limit = require( './limit.js' );
* - Iteration and insertion order are **not** guaranteed.
* - The function only operates on own properties, not inherited properties.
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ var factory = require( './factory.js' );
* - Iteration and insertion order are **not** guaranteed.
* - The function only operates on own properties, not inherited properties.
*
*
* @param {Object} obj - source object
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/utils/async/none-by/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var limit = require( './limit.js' );
* - 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.
* - 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`).
*
*
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
* @param {PositiveInteger} [options.limit] - maximum number of pending invocations at any one time
Expand Down
Loading

1 comment on commit 7ae2a48

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
utils/async/bifurcate-by 589/589 80/80 9/9 589/589
utils/async/count-by 556/556 65/65 9/9 556/556
utils/async/every-by-right 546/546 63/63 8/8 546/546
utils/async/every-by 548/548 63/63 8/8 548/548
utils/async/for-each-right 529/529 59/59 8/8 529/529
utils/async/for-each 531/531 59/59 8/8 531/531
utils/async/group-by 590/590 78/78 9/9 590/590
utils/async/inmap-right 542/542 62/62 9/9 542/542
utils/async/inmap 544/544 62/62 9/9 544/544
utils/async/map-function 496/496 59/59 9/9 496/496
utils/async/map-keys 577/577 64/64 9/9 577/577
utils/async/map-values 558/558 63/63 9/9 558/558
utils/async/none-by-right 546/546 63/63 8/8 546/546
utils/async/none-by 548/548 63/63 8/8 548/548
utils/async/reduce-right 558/558 66/66 9/9 558/558
utils/async/reduce 560/560 66/66 9/9 560/560
utils/async/some-by-right 560/560 67/67 8/8 560/560
utils/async/some-by 562/562 67/67 8/8 562/562
utils/async/tabulate-by 578/578 66/66 9/9 578/578
utils/bifurcate-by 483/483 46/46 5/5 483/483
utils/bifurcate-in 585/585 41/41 5/5 585/585
utils/bifurcate-own 545/545 44/44 5/5 545/545

The above coverage report was generated for the changes in this push.

Please sign in to comment.