Skip to content

Commit 574972f

Browse files
committed
Remove empty lines
1 parent c22d8f7 commit 574972f

7 files changed

Lines changed: 2 additions & 8 deletions

File tree

lib/node_modules/@stdlib/fs/exists/examples/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ console.log( exists.sync( __dirname ) );
2828
console.log( exists.sync( 'beepboop' ) );
2929
// => false
3030

31-
3231
/* Async */
3332

3433
exists( __dirname, done );

lib/node_modules/@stdlib/fs/read-dir/examples/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ out = readDir.sync( 'beepboop' );
3434
console.log( out instanceof Error );
3535
// => true
3636

37-
3837
/* Async */
3938

4039
readDir( __dirname, onRead );

lib/node_modules/@stdlib/fs/read-file-list/examples/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ files = readFileList.sync( [ 'beepboop' ], {
3636
console.log( files instanceof Error );
3737
// => true
3838

39-
4039
/* Async */
4140

4241
readFileList( [ __filename ], onFiles );

lib/node_modules/@stdlib/fs/read-file/examples/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ file = readFile.sync( 'beepboop', {
3636
console.log( file instanceof Error );
3737
// => true
3838

39-
4039
/* Async */
4140

4241
readFile( __filename, onFile );

lib/node_modules/@stdlib/fs/read-json/examples/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ var resolve = require( 'path' ).resolve;
2222
var instanceOf = require( '@stdlib/assert/instance-of' );
2323
var readJSON = require( './../lib' );
2424

25-
2625
var file = resolve( __dirname, '..', 'package.json' );
2726

2827
// Synchronously read a JSON file...

lib/node_modules/@stdlib/fs/read-wasm/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ function onRead( error, wasm ) {
3434

3535
// If WebAssembly is supported, create a WebAssembly module instance...
3636
if ( bool ) {
37-
wasm = new WebAssembly.Module( wasm ); // eslint-disable-line no-undef
38-
wasm = new WebAssembly.Instance( wasm, {} ); // eslint-disable-line no-undef
37+
wasm = new WebAssembly.Module( wasm );
38+
wasm = new WebAssembly.Instance( wasm, {} );
3939
console.log( wasm.exports.stdlib_hypot( 5.0, 12.0 ) );
4040
} else {
4141
console.log( wasm );

lib/node_modules/@stdlib/fs/resolve-parent-path/examples/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ out = resolveParentPath.sync( 'non_existent_basename' );
3737
console.log( out );
3838
// => null
3939

40-
4140
/* Async */
4241

4342
resolveParentPath( 'package.json', opts, onPath );

0 commit comments

Comments
 (0)