diff --git a/lib/node_modules/@stdlib/array/base/cuany-by-right/docs/types/test.ts b/lib/node_modules/@stdlib/array/base/cuany-by-right/docs/types/test.ts index d8aeccfb0d8a..b47f5d8eb327 100644 --- a/lib/node_modules/@stdlib/array/base/cuany-by-right/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/base/cuany-by-right/docs/types/test.ts @@ -169,21 +169,21 @@ function isPositive( value: number ): boolean { const x = [ false, false, true, false, false ]; const y = [ false, null, false, null, false, null, false, null, false, null ]; - cuanyByRight.assign( x, y , '1', 0, isPositive ); // $ExpectError - cuanyByRight.assign( x, y , true, 0, isPositive ); // $ExpectError - cuanyByRight.assign( x, y , false, 0, isPositive ); // $ExpectError - cuanyByRight.assign( x, y , null, 0, isPositive ); // $ExpectError - cuanyByRight.assign( x, y , void 0, isPositive ); // $ExpectError - cuanyByRight.assign( x, y , {}, 0, isPositive ); // $ExpectError - cuanyByRight.assign( x, y , [], 0, isPositive ); // $ExpectError - - cuanyByRight.assign( x, y , '1', 0, isPositive, {} ); // $ExpectError - cuanyByRight.assign( x, y , true, 0, isPositive, {} ); // $ExpectError - cuanyByRight.assign( x, y , false, 0, isPositive, {} ); // $ExpectError - cuanyByRight.assign( x, y , null, 0, isPositive, {} ); // $ExpectError - cuanyByRight.assign( x, y , void 0, isPositive, {} ); // $ExpectError - cuanyByRight.assign( x, y , {}, 0, isPositive, {} ); // $ExpectError - cuanyByRight.assign( x, y , [], 0, isPositive, {} ); // $ExpectError + cuanyByRight.assign( x, y, '1', 0, isPositive ); // $ExpectError + cuanyByRight.assign( x, y, true, 0, isPositive ); // $ExpectError + cuanyByRight.assign( x, y, false, 0, isPositive ); // $ExpectError + cuanyByRight.assign( x, y, null, 0, isPositive ); // $ExpectError + cuanyByRight.assign( x, y, void 0, isPositive ); // $ExpectError + cuanyByRight.assign( x, y, {}, 0, isPositive ); // $ExpectError + cuanyByRight.assign( x, y, [], 0, isPositive ); // $ExpectError + + cuanyByRight.assign( x, y, '1', 0, isPositive, {} ); // $ExpectError + cuanyByRight.assign( x, y, true, 0, isPositive, {} ); // $ExpectError + cuanyByRight.assign( x, y, false, 0, isPositive, {} ); // $ExpectError + cuanyByRight.assign( x, y, null, 0, isPositive, {} ); // $ExpectError + cuanyByRight.assign( x, y, void 0, isPositive, {} ); // $ExpectError + cuanyByRight.assign( x, y, {}, 0, isPositive, {} ); // $ExpectError + cuanyByRight.assign( x, y, [], 0, isPositive, {} ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a fourth argument which is not a number... diff --git a/lib/node_modules/@stdlib/array/base/cuany-by/docs/types/test.ts b/lib/node_modules/@stdlib/array/base/cuany-by/docs/types/test.ts index 511328402d00..9f7b4a8c6138 100644 --- a/lib/node_modules/@stdlib/array/base/cuany-by/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/base/cuany-by/docs/types/test.ts @@ -169,21 +169,21 @@ function isPositive( value: number ): boolean { const x = [ false, false, true, false, false ]; const y = [ false, null, false, null, false, null, false, null, false, null ]; - cuanyBy.assign( x, y , '1', 0, isPositive ); // $ExpectError - cuanyBy.assign( x, y , true, 0, isPositive ); // $ExpectError - cuanyBy.assign( x, y , false, 0, isPositive ); // $ExpectError - cuanyBy.assign( x, y , null, 0, isPositive ); // $ExpectError - cuanyBy.assign( x, y , void 0, isPositive ); // $ExpectError - cuanyBy.assign( x, y , {}, 0, isPositive ); // $ExpectError - cuanyBy.assign( x, y , [], 0, isPositive ); // $ExpectError - - cuanyBy.assign( x, y , '1', 0, isPositive, {} ); // $ExpectError - cuanyBy.assign( x, y , true, 0, isPositive, {} ); // $ExpectError - cuanyBy.assign( x, y , false, 0, isPositive, {} ); // $ExpectError - cuanyBy.assign( x, y , null, 0, isPositive, {} ); // $ExpectError - cuanyBy.assign( x, y , void 0, isPositive, {} ); // $ExpectError - cuanyBy.assign( x, y , {}, 0, isPositive, {} ); // $ExpectError - cuanyBy.assign( x, y , [], 0, isPositive, {} ); // $ExpectError + cuanyBy.assign( x, y, '1', 0, isPositive ); // $ExpectError + cuanyBy.assign( x, y, true, 0, isPositive ); // $ExpectError + cuanyBy.assign( x, y, false, 0, isPositive ); // $ExpectError + cuanyBy.assign( x, y, null, 0, isPositive ); // $ExpectError + cuanyBy.assign( x, y, void 0, isPositive ); // $ExpectError + cuanyBy.assign( x, y, {}, 0, isPositive ); // $ExpectError + cuanyBy.assign( x, y, [], 0, isPositive ); // $ExpectError + + cuanyBy.assign( x, y, '1', 0, isPositive, {} ); // $ExpectError + cuanyBy.assign( x, y, true, 0, isPositive, {} ); // $ExpectError + cuanyBy.assign( x, y, false, 0, isPositive, {} ); // $ExpectError + cuanyBy.assign( x, y, null, 0, isPositive, {} ); // $ExpectError + cuanyBy.assign( x, y, void 0, isPositive, {} ); // $ExpectError + cuanyBy.assign( x, y, {}, 0, isPositive, {} ); // $ExpectError + cuanyBy.assign( x, y, [], 0, isPositive, {} ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a fourth argument which is not a number... 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 067fcd9edd3a..efaaaa659aab 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 @@ -33,7 +33,7 @@ interface CuAny { * @returns output array * * @example - * var x = [ false, false , true, false , false ]; + * var x = [ false, false, true, false, false ]; * * var y = cuany( x ); * // returns [ false, false, true, true, true ]; diff --git a/lib/node_modules/@stdlib/array/base/cuany/docs/types/test.ts b/lib/node_modules/@stdlib/array/base/cuany/docs/types/test.ts index 7faad7c2ce21..b978f4e7ea07 100644 --- a/lib/node_modules/@stdlib/array/base/cuany/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/base/cuany/docs/types/test.ts @@ -81,13 +81,13 @@ import cuany = require( './index' ); const x = [ false, false, true, false, false ]; const y = [ false, null, false, null, false, null, false, null, false, null ]; - cuany.assign( x, y , '1', 0 ); // $ExpectError - cuany.assign( x, y , true, 0 ); // $ExpectError - cuany.assign( x, y , false, 0 ); // $ExpectError - cuany.assign( x, y , null, 0 ); // $ExpectError - cuany.assign( x, y , void 0, 0 ); // $ExpectError - cuany.assign( x, y , {}, 0 ); // $ExpectError - cuany.assign( x, y , [], 0 ); // $ExpectError + cuany.assign( x, y, '1', 0 ); // $ExpectError + cuany.assign( x, y, true, 0 ); // $ExpectError + cuany.assign( x, y, false, 0 ); // $ExpectError + cuany.assign( x, y, null, 0 ); // $ExpectError + cuany.assign( x, y, void 0, 0 ); // $ExpectError + cuany.assign( x, y, {}, 0 ); // $ExpectError + cuany.assign( x, y, [], 0 ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a fourth argument which is not a number... diff --git a/lib/node_modules/@stdlib/array/base/cuevery/docs/types/test.ts b/lib/node_modules/@stdlib/array/base/cuevery/docs/types/test.ts index 8fa67c985f96..0efdc064e3c4 100644 --- a/lib/node_modules/@stdlib/array/base/cuevery/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/base/cuevery/docs/types/test.ts @@ -81,13 +81,13 @@ import cuevery = require( './index' ); const x = [ false, false, true, false, false ]; const y = [ false, null, false, null, false, null, false, null, false, null ]; - cuevery.assign( x, y , '1', 0 ); // $ExpectError - cuevery.assign( x, y , true, 0 ); // $ExpectError - cuevery.assign( x, y , false, 0 ); // $ExpectError - cuevery.assign( x, y , null, 0 ); // $ExpectError - cuevery.assign( x, y , void 0, 0 ); // $ExpectError - cuevery.assign( x, y , {}, 0 ); // $ExpectError - cuevery.assign( x, y , [], 0 ); // $ExpectError + cuevery.assign( x, y, '1', 0 ); // $ExpectError + cuevery.assign( x, y, true, 0 ); // $ExpectError + cuevery.assign( x, y, false, 0 ); // $ExpectError + cuevery.assign( x, y, null, 0 ); // $ExpectError + cuevery.assign( x, y, void 0, 0 ); // $ExpectError + cuevery.assign( x, y, {}, 0 ); // $ExpectError + cuevery.assign( x, y, [], 0 ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a fourth argument which is not a number... diff --git a/lib/node_modules/@stdlib/array/base/cunone/docs/types/test.ts b/lib/node_modules/@stdlib/array/base/cunone/docs/types/test.ts index 44dfde5e1e36..a66ed69806a2 100644 --- a/lib/node_modules/@stdlib/array/base/cunone/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/base/cunone/docs/types/test.ts @@ -81,13 +81,13 @@ import cunone = require( './index' ); const x = [ false, false, true, false, false ]; const y = [ false, null, false, null, false, null, false, null, false, null ]; - cunone.assign( x, y , '1', 0 ); // $ExpectError - cunone.assign( x, y , true, 0 ); // $ExpectError - cunone.assign( x, y , false, 0 ); // $ExpectError - cunone.assign( x, y , null, 0 ); // $ExpectError - cunone.assign( x, y , void 0, 0 ); // $ExpectError - cunone.assign( x, y , {}, 0 ); // $ExpectError - cunone.assign( x, y , [], 0 ); // $ExpectError + cunone.assign( x, y, '1', 0 ); // $ExpectError + cunone.assign( x, y, true, 0 ); // $ExpectError + cunone.assign( x, y, false, 0 ); // $ExpectError + cunone.assign( x, y, null, 0 ); // $ExpectError + cunone.assign( x, y, void 0, 0 ); // $ExpectError + cunone.assign( x, y, {}, 0 ); // $ExpectError + cunone.assign( x, y, [], 0 ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a fourth argument which is not a number... diff --git a/lib/node_modules/@stdlib/array/complex128/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/complex128/docs/types/index.d.ts index cff41877aa04..cb3d006538ea 100644 --- a/lib/node_modules/@stdlib/array/complex128/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/complex128/docs/types/index.d.ts @@ -498,9 +498,9 @@ declare class Complex128Array implements Complex128ArrayInterface { * * var arr = new Complex128Array( 3 ); * - * arr.set( [ 1.0 , 1.0 ], 0 ); - * arr.set( [ 2.0 , 2.0 ], 1 ); - * arr.set( [ 3.0 , 3.0 ], 2 ); + * arr.set( [ 1.0, 1.0 ], 0 ); + * arr.set( [ 2.0, 2.0 ], 1 ); + * arr.set( [ 3.0, 3.0 ], 2 ); * * var bool = arr.every( predicate ); * // returns true @@ -1006,9 +1006,9 @@ declare class Complex128Array implements Complex128ArrayInterface { * * var arr = new Complex128Array( 3 ); * - * arr.set( [ 1.0 , -1.0 ], 0 ); - * arr.set( [ 2.0 , 2.0 ], 1 ); - * arr.set( [ 3.0 , -3.0 ], 2 ); + * arr.set( [ 1.0, -1.0 ], 0 ); + * arr.set( [ 2.0, 2.0 ], 1 ); + * arr.set( [ 3.0, -3.0 ], 2 ); * * var bool = arr.some( predicate ); * // returns true diff --git a/lib/node_modules/@stdlib/array/complex64/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/complex64/docs/types/index.d.ts index ab92d846ef85..1b1ad6ca155c 100644 --- a/lib/node_modules/@stdlib/array/complex64/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/complex64/docs/types/index.d.ts @@ -498,9 +498,9 @@ declare class Complex64Array implements Complex64ArrayInterface { * * var arr = new Complex64Array( 3 ); * - * arr.set( [ 1.0 , 1.0 ], 0 ); - * arr.set( [ 2.0 , 2.0 ], 1 ); - * arr.set( [ 3.0 , 3.0 ], 2 ); + * arr.set( [ 1.0, 1.0 ], 0 ); + * arr.set( [ 2.0, 2.0 ], 1 ); + * arr.set( [ 3.0, 3.0 ], 2 ); * * var bool = arr.every( predicate ); * // returns true @@ -1020,9 +1020,9 @@ declare class Complex64Array implements Complex64ArrayInterface { * * var arr = new Complex64Array( 3 ); * - * arr.set( [ 1.0 , -1.0 ], 0 ); - * arr.set( [ 2.0 , 2.0 ], 1 ); - * arr.set( [ 3.0 , -3.0 ], 2 ); + * arr.set( [ 1.0, -1.0 ], 0 ); + * arr.set( [ 2.0, 2.0 ], 1 ); + * arr.set( [ 3.0, -3.0 ], 2 ); * * var bool = arr.some( predicate ); * // returns true diff --git a/lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts index 9164ddf7b9a4..e4bea751f6f3 100644 --- a/lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts @@ -5129,11 +5129,11 @@ interface Namespace { * * @example * var out = ns.frexp( Infinity ); - * // returns [ Infinity , 0 ] + * // returns [ Infinity, 0 ] * * @example * var out = ns.frexp( -Infinity ); - * // returns [ -Infinity , 0 ] + * // returns [ -Infinity, 0 ] */ frexp: typeof frexp; @@ -5167,11 +5167,11 @@ interface Namespace { * * @example * var out = ns.frexpf( Infinity ); - * // returns [ Infinity , 0 ] + * // returns [ Infinity, 0 ] * * @example * var out = ns.frexpf( -Infinity ); - * // returns [ -Infinity , 0 ] + * // returns [ -Infinity, 0 ] */ frexpf: typeof frexpf; diff --git a/lib/node_modules/@stdlib/math/base/special/frexp/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/frexp/docs/types/index.d.ts index 888a599f0305..bc19d628c7d8 100644 --- a/lib/node_modules/@stdlib/math/base/special/frexp/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/frexp/docs/types/index.d.ts @@ -56,11 +56,11 @@ interface Frexp { * * @example * var out = frexp( Infinity ); - * // returns [ Infinity , 0 ] + * // returns [ Infinity, 0 ] * * @example * var out = frexp( -Infinity ); - * // returns [ -Infinity , 0 ] + * // returns [ -Infinity, 0 ] */ ( x: number ): [ number, number ]; @@ -123,11 +123,11 @@ interface Frexp { * * @example * var out = frexp( Infinity ); -* // returns [ Infinity , 0 ] +* // returns [ Infinity, 0 ] * * @example * var out = frexp( -Infinity ); -* // returns [ -Infinity , 0 ] +* // returns [ -Infinity, 0 ] */ declare var frexp: Frexp; diff --git a/lib/node_modules/@stdlib/math/base/special/frexpf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/frexpf/docs/types/index.d.ts index e93d01c80a25..93e8a3d9aea0 100644 --- a/lib/node_modules/@stdlib/math/base/special/frexpf/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/frexpf/docs/types/index.d.ts @@ -56,11 +56,11 @@ interface Frexpf { * * @example * var out = frexpf( Infinity ); - * // returns [ Infinity , 0 ] + * // returns [ Infinity, 0 ] * * @example * var out = frexpf( -Infinity ); - * // returns [ -Infinity , 0 ] + * // returns [ -Infinity, 0 ] */ ( x: number ): [ number, number ]; @@ -123,11 +123,11 @@ interface Frexpf { * * @example * var out = frexpf( Infinity ); -* // returns [ Infinity , 0 ] +* // returns [ Infinity, 0 ] * * @example * var out = frexpf( -Infinity ); -* // returns [ -Infinity , 0 ] +* // returns [ -Infinity, 0 ] */ declare var frexpf: Frexpf; diff --git a/lib/node_modules/@stdlib/object/any-own-by/docs/types/test.ts b/lib/node_modules/@stdlib/object/any-own-by/docs/types/test.ts index bb87632c542b..342531f6a89b 100644 --- a/lib/node_modules/@stdlib/object/any-own-by/docs/types/test.ts +++ b/lib/node_modules/@stdlib/object/any-own-by/docs/types/test.ts @@ -46,12 +46,12 @@ const obj = { // The compiler throws an error if the function is provided a second argument which is not a function... { - anyOwnBy( obj , 2 ); // $ExpectError - anyOwnBy( obj , false ); // $ExpectError - anyOwnBy( obj , true ); // $ExpectError - anyOwnBy( obj , 'abc' ); // $ExpectError - anyOwnBy( obj , {} ); // $ExpectError - anyOwnBy( obj , [] ); // $ExpectError + anyOwnBy( obj, 2 ); // $ExpectError + anyOwnBy( obj, false ); // $ExpectError + anyOwnBy( obj, true ); // $ExpectError + anyOwnBy( obj, 'abc' ); // $ExpectError + anyOwnBy( obj, {} ); // $ExpectError + anyOwnBy( obj, [] ); // $ExpectError } // The compiler throws an error if the function is provided an invalid number of arguments... diff --git a/lib/node_modules/@stdlib/object/every-own-by/docs/types/test.ts b/lib/node_modules/@stdlib/object/every-own-by/docs/types/test.ts index a839c1192f3b..16c4ec001c6b 100644 --- a/lib/node_modules/@stdlib/object/every-own-by/docs/types/test.ts +++ b/lib/node_modules/@stdlib/object/every-own-by/docs/types/test.ts @@ -46,12 +46,12 @@ var obj = { // The compiler throws an error if the function is provided a second argument which is not a function... { - everyOwnBy( obj , 2 ); // $ExpectError - everyOwnBy( obj , false ); // $ExpectError - everyOwnBy( obj , true ); // $ExpectError - everyOwnBy( obj , 'abc' ); // $ExpectError - everyOwnBy( obj , {} ); // $ExpectError - everyOwnBy( obj , [] ); // $ExpectError + everyOwnBy( obj, 2 ); // $ExpectError + everyOwnBy( obj, false ); // $ExpectError + everyOwnBy( obj, true ); // $ExpectError + everyOwnBy( obj, 'abc' ); // $ExpectError + everyOwnBy( obj, {} ); // $ExpectError + everyOwnBy( obj, [] ); // $ExpectError } // The compiler throws an error if the function is provided an invalid number of arguments... diff --git a/lib/node_modules/@stdlib/object/none-own-by/docs/types/test.ts b/lib/node_modules/@stdlib/object/none-own-by/docs/types/test.ts index c095398c5c5d..6ef670d8d41b 100644 --- a/lib/node_modules/@stdlib/object/none-own-by/docs/types/test.ts +++ b/lib/node_modules/@stdlib/object/none-own-by/docs/types/test.ts @@ -45,12 +45,12 @@ const obj = { // The compiler throws an error if the function is provided a second argument which is not a function... { - noneOwnBy( obj , 2 ); // $ExpectError - noneOwnBy( obj , false ); // $ExpectError - noneOwnBy( obj , true ); // $ExpectError - noneOwnBy( obj , 'abc' ); // $ExpectError - noneOwnBy( obj , {} ); // $ExpectError - noneOwnBy( obj , [] ); // $ExpectError + noneOwnBy( obj, 2 ); // $ExpectError + noneOwnBy( obj, false ); // $ExpectError + noneOwnBy( obj, true ); // $ExpectError + noneOwnBy( obj, 'abc' ); // $ExpectError + noneOwnBy( obj, {} ); // $ExpectError + noneOwnBy( obj, [] ); // $ExpectError } // The compiler throws an error if the function is provided an invalid number of arguments... diff --git a/lib/node_modules/@stdlib/utils/papply-right/docs/types/test.ts b/lib/node_modules/@stdlib/utils/papply-right/docs/types/test.ts index b0e64024e7a9..6ef7fc53b524 100644 --- a/lib/node_modules/@stdlib/utils/papply-right/docs/types/test.ts +++ b/lib/node_modules/@stdlib/utils/papply-right/docs/types/test.ts @@ -24,7 +24,7 @@ import papplyRight = require( './index' ); // The function returns a partially applied function... { papplyRight( ( x: number, y: number ): number => x + y, 3 ); // $ExpectType Closure - papplyRight( ( x: number, y: number, z: number ): number => x + y + z , 3, 4 ); // $ExpectType Closure + papplyRight( ( x: number, y: number, z: number ): number => x + y + z, 3, 4 ); // $ExpectType Closure } // The compiler throws an error if the function is provided a first argument which is not a function... diff --git a/lib/node_modules/@stdlib/utils/papply/docs/types/test.ts b/lib/node_modules/@stdlib/utils/papply/docs/types/test.ts index 97007c2e3c8f..060d0cb95314 100644 --- a/lib/node_modules/@stdlib/utils/papply/docs/types/test.ts +++ b/lib/node_modules/@stdlib/utils/papply/docs/types/test.ts @@ -24,7 +24,7 @@ import papply = require( './index' ); // The function returns a partially applied function... { papply( ( x: number, y: number ): number => x + y, 3 ); // $ExpectType Closure - papply( ( x: number, y: number, z: number ): number => x + y + z , 3, 4 ); // $ExpectType Closure + papply( ( x: number, y: number, z: number ): number => x + y + z, 3, 4 ); // $ExpectType Closure } // The compiler throws an error if the function is provided a first argument which is not a function...