Skip to content

Commit c6859f4

Browse files
committed
Auto-generated commit
1 parent ca1f71c commit c6859f4

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ bench( pkg, function benchmark( b ) {
3737
for ( i = 0; i < b.iterations; i++ ) {
3838
x = i % 256; // 2^8
3939
y = toBinaryStringUint8( x );
40-
if ( !isString( y ) ) {
40+
if ( typeof y !== 'string' ) {
4141
b.fail( 'should return a string' );
4242
}
4343
}

lib/index.js

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

4141
// MODULES //
4242

43-
var toBinaryString = require( './main.js' );
43+
var main = require( './main.js' );
4444

4545

4646
// EXPORTS //
4747

48-
module.exports = toBinaryString;
48+
module.exports = main;

0 commit comments

Comments
 (0)