File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
lib/node_modules/@stdlib/assert
is-negative-integer-array/docs/types
is-nonnegative-integer-array/docs/types
is-nonnegative-number-array/docs/types
is-positive-integer-array/docs/types
is-positive-number-array/docs/types
is-probability-array/docs/types
is-symbol-array/docs/types Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ import isNegativeIntegerArray = require( './index' );
5454 isNegativeIntegerArray . objects ( [ - 2 ] ) ; // $ExpectType boolean
5555}
5656
57- // The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+ // The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858{
5959 isNegativeIntegerArray . objects ( ) ; // $ExpectError
6060 isNegativeIntegerArray . objects ( [ - 2 ] , 123 ) ; // $ExpectError
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ import isNonNegativeIntegerArray = require( './index' );
5454 isNonNegativeIntegerArray . objects ( [ 2 ] ) ; // $ExpectType boolean
5555}
5656
57- // The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+ // The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858{
5959 isNonNegativeIntegerArray . objects ( ) ; // $ExpectError
6060 isNonNegativeIntegerArray . objects ( [ 2 ] , 123 ) ; // $ExpectError
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ import isNonNegativeNumberArray = require( './index' );
5454 isNonNegativeNumberArray . objects ( [ 2 ] ) ; // $ExpectType boolean
5555}
5656
57- // The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+ // The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858{
5959 isNonNegativeNumberArray . objects ( ) ; // $ExpectError
6060 isNonNegativeNumberArray . objects ( [ 2 ] , 123 ) ; // $ExpectError
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ import isPositiveIntegerArray = require( './index' );
5454 isPositiveIntegerArray . objects ( [ 2 ] ) ; // $ExpectType boolean
5555}
5656
57- // The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+ // The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858{
5959 isPositiveIntegerArray . objects ( ) ; // $ExpectError
6060 isPositiveIntegerArray . objects ( [ 2 ] , 123 ) ; // $ExpectError
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ import isPositiveNumberArray = require( './index' );
5454 isPositiveNumberArray . objects ( [ 2 ] ) ; // $ExpectType boolean
5555}
5656
57- // The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+ // The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858{
5959 isPositiveNumberArray . objects ( ) ; // $ExpectError
6060 isPositiveNumberArray . objects ( [ 2 ] , 123 ) ; // $ExpectError
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ import isProbabilityArray = require( './index' );
5454 isProbabilityArray . objects ( [ 0.2 ] ) ; // $ExpectType boolean
5555}
5656
57- // The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+ // The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858{
5959 isProbabilityArray . objects ( ) ; // $ExpectError
6060 isProbabilityArray . objects ( [ 0.2 ] , 123 ) ; // $ExpectError
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ import isSymbolArray = require( './index' );
5454 isSymbolArray . objects ( [ Symbol ( 'abc' ) ] ) ; // $ExpectType boolean
5555}
5656
57- // The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+ // The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858{
5959 isSymbolArray . objects ( ) ; // $ExpectError
6060 isSymbolArray . objects ( [ Symbol ( 'abc' ) ] , 123 ) ; // $ExpectError
You can’t perform that action at this time.
0 commit comments