8000 Auto-generated commit · stdlib-js/string-right-pad@88452c0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 88452c0

Browse files
committed
Auto-generated commit
1 parent a5b7a76 commit 88452c0

File tree

4 files changed

+3
-4
lines changed

4 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
@@ -52,7 +52,7 @@ function createBenchmark( len ) {
5252
b.tic();
5353
for ( i = 0; i < b.iterations; i++ ) {
5454
out = rpad( 'beep', len, fromCodePoint( i%126 ) );
55-
if ( !isString( out ) ) {
55+
if ( typeof out !== 'string' ) {
5656
b.fail( 'should return a string' );
5757
}
5858
}

lib/index.js

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

3939
// MODULES //
4040

41-
var rpad = require( './right_pad.js' );
41+
var main = require( './main.js' );
4242

4343

4444
// EXPORTS //
4545

46-
module.exports = rpad;
46+
module.exports = main;
File renamed without changes.

0 commit comments

Comments
 (0)
0