Skip to content

Commit

Permalink
fix(base): fix repl.txt linting errors and revert changes made in cuany
Browse files Browse the repository at this point in the history
This commit fixes linting errors made in repl.txt and
changes made in cuany are reverted.

PR-URL: stdlib-js#2805
Ref: stdlib-js#649
---------
Signed-off-by: Mohammad Kaif <[email protected]>
  • Loading branch information
Kaif987 committed Aug 25, 2024
1 parent 7679958 commit b16c3fb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

'use strict';

// MODULES //createBenchmark
// MODULES //

var bench = require( '@stdlib/bench' );
var pow = require( '@stdlib/math/base/special/pow' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

// TypeScript Version: 4.1pre
// TypeScript Version: 4.1

/// <reference types="@stdlib/types"/>

Expand Down
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/array/base/cuevery-by/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

{{alias}}( x, predicate[, thisArg] )
Cumulatively tests whether every array element in a provided array
passes a test implemented by a predicate function
passes a test implemented by a predicate function.

The predicate function is provided three arguments:

Expand Down Expand Up @@ -32,7 +32,8 @@
> var y = {{alias}}( x, fcn )
[ true, true, false, false, false ]

{{alias}}.assign( x, out, stride, offset, predicate )

{{alias}}.assign( x, out, stride, offset, predicate[, thisArg])
Cumulatively tests whether every array element in a provided array passes
a test implemented by a predicate function and assigns the values to
elements in a provided output array.
Expand All @@ -43,7 +44,7 @@
Input array.

out: ArrayLikeObject
Output array
Output array.

stride: integer
Output array stride.
Expand All @@ -52,7 +53,7 @@
Output array offset.

predicate: Function
Predicate function
Predicate function.

thisArg: any (optional)
Execution context.
Expand All @@ -74,4 +75,3 @@

See Also
--------

0 comments on commit b16c3fb

Please sign in to comment.