Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Oct 1, 2022
1 parent 95c9fe9 commit ee3c361
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/.keepalive
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2022-09-01T00:59:43.638Z
2022-10-01T01:24:45.440Z
4 changes: 2 additions & 2 deletions docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import stdev = require( './index' );
stdev( 0.3 ); // $ExpectType number
}

// The function does not compile if provided a value other than a number...
// The compiler throws an error if the function is provided a value other than a number...
{
stdev( true ); // $ExpectError
stdev( false ); // $ExpectError
Expand All @@ -38,7 +38,7 @@ import stdev = require( './index' );
stdev( ( x: number ): number => x ); // $ExpectError
}

// The function does not compile if provided insufficient arguments...
// The compiler throws an error if the function is provided insufficient arguments...
{
stdev(); // $ExpectError
}
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@

// MODULES //

var stdev = require( './stdev.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = stdev;
module.exports = main;
File renamed without changes.

0 comments on commit ee3c361

Please sign in to comment.