Skip to content

Commit eaca68c

Browse files
committed
verify
1 parent 31a58a3 commit eaca68c

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

lib/node_modules/@stdlib/stats/incr/nanmax/docs/types/test.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ import incrnanmax = require( './index' );
2323

2424
// The function returns an accumulator function...
2525
{
26-
incrnanmax(); // $ExpectType accumulator
26+
incrnanmax(); // $ExpectType accumulator
2727
}
2828

2929
// The compiler throws an error if the function is provided arguments...
3030
{
31-
incrnanmax( '5' ); // $ExpectError
32-
incrnanmax( 5 ); // $ExpectError
33-
incrnanmax( true ); // $ExpectError
34-
incrnanmax( false ); // $ExpectError
35-
incrnanmax( null ); // $ExpectError
36-
incrnanmax( undefined ); // $ExpectError
37-
incrnanmax( [] ); // $ExpectError
38-
incrnanmax( {} ); // $ExpectError
39-
incrnanmax( ( x: number ): number => x ); // $ExpectError
31+
incrnanmax( '5' ); // $ExpectError
32+
incrnanmax( 5 ); // $ExpectError
33+
incrnanmax( true ); // $ExpectError
34+
incrnanmax( false ); // $ExpectError
35+
incrnanmax( null ); // $ExpectError
36+
incrnanmax( undefined ); // $ExpectError
37+
incrnanmax( [] ); // $ExpectError
38+
incrnanmax( {} ); // $ExpectError
39+
incrnanmax( ( x: number ): number => x ); // $ExpectError
4040
}
4141

4242
// The function returns an accumulator function which returns an accumulated result...

lib/node_modules/@stdlib/stats/incr/nanmax/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@
6464
"incremental",
6565
"accumulator"
6666
]
67-
}
67+
}

lib/node_modules/@stdlib/stats/incr/nanmax/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ tape( 'main export is a function', function test( t ) {
3434
t.end();
3535
});
3636

37-
tape( 'the function returns an accumulator function', function test( t ) {
38-
t.equal( typeof incrnanmax(), 'function', 'returns a function' );
39-
t.end();
37+
tape( 'the function returns an accumulator function', function test( t ) {
38+
t.equal( typeof incrnanmax(), 'function', 'returns a function' );
39+
t.end();
4040
});
4141

4242
tape( 'if not provided any values, the initial returned maximum value is `null`', function test( t ) {

0 commit comments

Comments
 (0)