Skip to content

Commit 065858f

Browse files
committed
Auto-generated commit
1 parent 9975a64 commit 065858f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022-09-01T01:27:31.241Z
1+
2022-10-01T01:54:15.148Z

docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import fromBinaryStringf = require( './index' );
2626
fromBinaryStringf( '01000000100000000000000000000000' ); // $ExpectType number
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
fromBinaryStringf( true ); // $ExpectError
3232
fromBinaryStringf( false ); // $ExpectError
@@ -36,7 +36,7 @@ import fromBinaryStringf = require( './index' );
3636
fromBinaryStringf( ( x: number ): number => x ); // $ExpectError
3737
}
3838

39-
// The function does not compile if provided insufficient arguments...
39+
// The compiler throws an error if the function is provided insufficient arguments...
4040
{
4141
fromBinaryStringf(); // $ExpectError
4242
}

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141

4242
// MODULES //
4343

44-
var fromBinaryStringf = require( './main.js' );
44+
var main = require( './main.js' );
4545

4646

4747
// EXPORTS //
4848

49-
module.exports = fromBinaryStringf;
49+
module.exports = main;

0 commit comments

Comments
 (0)