Skip to content

Commit ad4cd3c

Browse files
committed
Auto-generated commit
1 parent e095654 commit ad4cd3c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/.keepalive

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022-09-01T01:10:14.262Z
1+
2022-10-01T01:35:08.113Z

docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import extname = require( './index' );
2626
extname( 'index.js' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a string...
29+
// The compiler throws an error if the function is provided a value other than a string...
3030
{
3131
extname( true ); // $ExpectError
3232
extname( false ); // $ExpectError

lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232

3333
// MODULES //
3434

35-
var extname = require( './extname.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

40-
module.exports = extname;
40+
module.exports = main;

lib/extname.js lib/main.js

File renamed without changes.

0 commit comments

Comments
 (0)