Skip to content

Commit 31fd427

Browse files
committed
style: remove unwanted empty lines
1 parent 0c994ee commit 31fd427

File tree

49 files changed

+0
-50
lines changed
  • lib/node_modules/@stdlib

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+0
-50
lines changed

lib/node_modules/@stdlib/array/base/cuany/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ import cuany = require( './index' );
7676
cuany.assign( x, {}, 2, 0 ); // $ExpectError
7777
}
7878

79-
8079
// The compiler throws an error if the `assign` method is provided a third argument which is not a number...
8180
{
8281
const x = [ false, false, true, false, false ];

lib/node_modules/@stdlib/array/base/cuevery/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ import cuevery = require( './index' );
7676
cuevery.assign( x, {}, 2, 0 ); // $ExpectError
7777
}
7878

79-
8079
// The compiler throws an error if the `assign` method is provided a third argument which is not a number...
8180
{
8281
const x = [ false, false, true, false, false ];

lib/node_modules/@stdlib/array/base/cunone/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ import cunone = require( './index' );
7676
cunone.assign( x, {}, 2, 0 ); // $ExpectError
7777
}
7878

79-
8079
// The compiler throws an error if the `assign` method is provided a third argument which is not a number...
8180
{
8281
const x = [ false, false, true, false, false ];

lib/node_modules/@stdlib/array/base/cusome-by-right/docs/types/test.ts

-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ const isPositive = ( v: number ): boolean => {
129129
cusomeByRight.assign( x, [], y, 1, 0, isPositive ); // $ExpectError
130130
}
131131

132-
133132
// The compiler throws an error if the `assign` method is provided a third argument which is not an array-like object...
134133
{
135134
const x = [ 1, 1, 0, 0, 0 ];
@@ -184,7 +183,6 @@ const isPositive = ( v: number ): boolean => {
184183
cusomeByRight.assign( x, 1, y, 1, 0, [] ); // $ExpectError
185184
}
186185

187-
188186
// The compiler throws an error if the `assign` method is provided an unsupported number of arguments...
189187
{
190188
cusomeByRight.assign(); // $ExpectError

lib/node_modules/@stdlib/assert/is-boolean-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isBooleanArray = require( './index' );
4646
isBooleanArray.primitives( [ true ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-boolean/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isBoolean = require( './index' );
4646
isBoolean.isPrimitive( true, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-composite/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isComposite = require( './index' );
4646
isComposite.isPrimitive( 0.2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-cube-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isCubeNumber = require( './index' );
4646
isCubeNumber.isPrimitive( 0.2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-empty-string/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isEmptyString = require( './index' );
4646
isEmptyString.isPrimitive( 'abc', 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-even/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isEven = require( './index' );
4646
isEven.isPrimitive( 4, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-finite/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isFinite = require( './index' );
4646
isFinite.isPrimitive( 4, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-infinite/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isInfinite = require( './index' );
4646
isInfinite.isPrimitive( 1 / 0, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-integer/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isInteger = require( './index' );
4646
isInteger.isPrimitive( 2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nan/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isnan = require( './index' );
4646
isnan.isPrimitive( NaN, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-negative-integer-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNegativeIntegerArray = require( './index' );
4646
isNegativeIntegerArray.primitives( [ -2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-negative-integer/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNegativeInteger = require( './index' );
4646
isNegativeInteger.isPrimitive( -2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-negative-number-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNegativeNumberArray = require( './index' );
4646
isNegativeNumberArray.primitives( [ -2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-negative-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNegativeNumber = require( './index' );
4646
isNegativeNumber.isPrimitive( -2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-negative-zero/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ import isNegativeZero = require( './index' );
4747
isNegativeZero.isPrimitive( -0, 123 ); // $ExpectError
4848
}
4949

50-
5150
// Attached to main export is an isPrimitive method which returns a boolean...
5251
{
5352
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nonnegative-integer-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNonNegativeIntegerArray = require( './index' );
4646
isNonNegativeIntegerArray.primitives( [ 2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nonnegative-integer/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNonNegativeInteger = require( './index' );
4646
isNonNegativeInteger.isPrimitive( 2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nonnegative-number-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNonNegativeNumberArray = require( './index' );
4646
isNonNegativeNumberArray.primitives( [ 2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nonnegative-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNonNegativeNumber = require( './index' );
4646
isNonNegativeNumber.isPrimitive( 2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nonpositive-integer-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNonPositiveIntegerArray = require( './index' );
4646
isNonPositiveIntegerArray.primitives( [ -2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nonpositive-integer/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNonPositiveInteger = require( './index' );
4646
isNonPositiveInteger.isPrimitive( -2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nonpositive-number-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNonPositiveNumberArray = require( './index' );
4646
isNonPositiveNumberArray.primitives( [ -2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-nonpositive-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNonPositiveNumber = require( './index' );
4646
isNonPositiveNumber.isPrimitive( -2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isNumber = require( './index' );
4646
isNumber.isPrimitive( 2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-odd/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isOdd = require( './index' );
4646
isOdd.isPrimitive( 3, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-positive-finite/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isPositiveFinite = require( './index' );
4646
isPositiveFinite.isPrimitive( 2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-positive-integer-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isPositiveIntegerArray = require( './index' );
4646
isPositiveIntegerArray.primitives( [ 2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-positive-integer/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isPositiveInteger = require( './index' );
4646
isPositiveInteger.isPrimitive( 2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-positive-number-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isPositiveNumberArray = require( './index' );
4646
isPositiveNumberArray.primitives( [ 2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-positive-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isPositiveNumber = require( './index' );
4646
isPositiveNumber.isPrimitive( 2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-positive-zero/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ import isPositiveZero = require( './index' );
4747
isPositiveZero.isPrimitive( 0, 123 ); // $ExpectError
4848
}
4949

50-
5150
// Attached to main export is an isPrimitive method which returns a boolean...
5251
{
5352
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-prime/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isPrime = require( './index' );
4646
isPrime.isPrimitive( 0.2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-probability-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isProbabilityArray = require( './index' );
4646
isProbabilityArray.primitives( [ 0.2 ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-probability/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isProbability = require( './index' );
4646
isProbability.isPrimitive( 0.2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-safe-integer/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isSafeInteger = require( './index' );
4646
isSafeInteger.isPrimitive( 2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-square-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isSquareNumber = require( './index' );
4646
isSquareNumber.isPrimitive( 0.2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-square-triangular-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isSquareTriangularNumber = require( './index' );
4646
isSquareTriangularNumber.isPrimitive( 0.2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-string-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isStringArray = require( './index' );
4646
isStringArray.primitives( [ 'abc' ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-symbol-array/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isSymbolArray = require( './index' );
4646
isSymbolArray.primitives( [ Symbol( 'abc' ) ], 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an `objects` method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/assert/is-triangular-number/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ import isTriangularNumber = require( './index' );
4646
isTriangularNumber.isPrimitive( 0.2, 123 ); // $ExpectError
4747
}
4848

49-
5049
// Attached to main export is an isPrimitive method which returns a boolean...
5150
{
5251
// eslint-disable-next-line no-new-wrappers

lib/node_modules/@stdlib/stats/base/dists/beta/mgf/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import mgf = require( './index' );
6464
mgf.factory( 3, 4 ); // $ExpectType Unary
6565
}
6666

67-
6867
// The `factory` method returns a function which returns a number...
6968
{
7069
const fcn = mgf.factory( 3, 4 );

lib/node_modules/@stdlib/stats/base/dists/discrete-uniform/mgf/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import mgf = require( './index' );
6464
mgf.factory( 3, 4 ); // $ExpectType Unary
6565
}
6666

67-
6867
// The `factory` method returns a function which returns a number...
6968
{
7069
const fcn = mgf.factory( 3, 4 );

lib/node_modules/@stdlib/stats/base/dists/uniform/mgf/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import mgf = require( './index' );
6464
mgf.factory( 3, 4 ); // $ExpectType Unary
6565
}
6666

67-
6867
// The `factory` method returns a function which returns a number...
6968
{
7069
const fcn = mgf.factory( 3, 4 );

lib/node_modules/@stdlib/stats/base/dists/weibull/mgf/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import mgf = require( './index' );
6464
mgf.factory( 3, 4 ); // $ExpectType Unary
6565
}
6666

67-
6867
// The `factory` method returns a function which returns a number...
6968
{
7069
const fcn = mgf.factory( 3, 4 );

lib/node_modules/@stdlib/utils/every-in-by/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ function isPositive( v: number ): boolean {
2929
return v > 0;
3030
}
3131

32-
3332
// The function returns a boolean...
3433
{
3534
everyInBy( { 'a': 1, 'b': 2, 'c': 3 }, isPositive ); // $ExpectType boolean

0 commit comments

Comments
 (0)