diff --git a/lib/node_modules/@stdlib/array/base/cuany/benchmark/benchmark.length.js b/lib/node_modules/@stdlib/array/base/cuany/benchmark/benchmark.length.js index 5c15ff85421..9c3e8e35761 100644 --- a/lib/node_modules/@stdlib/array/base/cuany/benchmark/benchmark.length.js +++ b/lib/node_modules/@stdlib/array/base/cuany/benchmark/benchmark.length.js @@ -18,7 +18,7 @@ 'use strict'; -// MODULES //createBenchmark +// MODULES // var bench = require( '@stdlib/bench' ); var pow = require( '@stdlib/math/base/special/pow' ); diff --git a/lib/node_modules/@stdlib/array/base/cuany/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/base/cuany/docs/types/index.d.ts index a6ecc54298c..1522478d0b2 100644 --- a/lib/node_modules/@stdlib/array/base/cuany/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/base/cuany/docs/types/index.d.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -// TypeScript Version: 4.1pre +// TypeScript Version: 4.1 /// diff --git a/lib/node_modules/@stdlib/array/base/cuevery-by/docs/repl.txt b/lib/node_modules/@stdlib/array/base/cuevery-by/docs/repl.txt index c756298ac32..a602b6d6d37 100644 --- a/lib/node_modules/@stdlib/array/base/cuevery-by/docs/repl.txt +++ b/lib/node_modules/@stdlib/array/base/cuevery-by/docs/repl.txt @@ -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: @@ -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. @@ -43,7 +44,7 @@ Input array. out: ArrayLikeObject - Output array + Output array. stride: integer Output array stride. @@ -52,7 +53,7 @@ Output array offset. predicate: Function - Predicate function + Predicate function. thisArg: any (optional) Execution context. @@ -74,4 +75,3 @@ See Also -------- -