Skip to content

Commit 28027d7

Browse files
committed
Add empty lines
1 parent 792ff36 commit 28027d7

5 files changed

Lines changed: 11 additions & 0 deletions

File tree

lib/node_modules/@stdlib/assert/is-binary-string/lib/is_binary_string.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
1616
* @example
1717
* var bool = isBinaryString( '1000101' );
1818
* // returns true
19+
*
1920
* @example
2021
* var bool = isBinaryString( 'beep' );
2122
* // returns false
23+
*
2224
* @example
2325
* var bool = isBinaryString( '' );
2426
* // returns false

lib/node_modules/@stdlib/assert/is-boolean/lib/generic.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ var isObject = require( './object.js' );
1717
* @example
1818
* var bool = isBoolean( false );
1919
* // returns true
20+
*
2021
* @example
2122
* var bool = isBoolean( true );
2223
* // returns true
24+
*
2325
* @example
2426
* var bool = isBoolean( new Boolean( false ) );
2527
* // returns true
28+
*
2629
* @example
2730
* var bool = isBoolean( new Boolean( true ) );
2831
* // returns true

lib/node_modules/@stdlib/assert/is-boolean/lib/object.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ var test = require( './try2serialize.js' );
1818
* @example
1919
* var bool = isBoolean( true );
2020
* // returns false
21+
*
2122
* @example
2223
* var bool = isBoolean( new Boolean( false ) );
2324
* // returns true

lib/node_modules/@stdlib/assert/is-boolean/lib/primitive.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
* @example
1010
* var bool = isBoolean( true );
1111
* // returns true
12+
*
1213
* @example
1314
* var bool = isBoolean( false );
1415
* // returns true
16+
*
1517
* @example
1618
* var bool = isBoolean( new Boolean( true ) );
1719
* // returns false

lib/node_modules/@stdlib/assert/is-buffer/lib/is_buffer.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ var isObjectLike = require( '@stdlib/assert/is-object-like' );
1616
* @example
1717
* var v = isBuffer( new Buffer( 'beep' ) );
1818
* // returns true
19+
*
1920
* @example
2021
* var v = isBuffer( new Buffer( [1,2,3,4] ) );
2122
* // returns true
23+
*
2224
* @example
2325
* var v = isBuffer( {} );
2426
* // returns false
27+
*
2528
* @example
2629
* var v = isBuffer( [] );
2730
* // returns false

0 commit comments

Comments
 (0)