Skip to content

Commit b83946f

Browse files
committed
chore: fix JavaScript lint errors (issue #7003)
1 parent 28b8375 commit b83946f

File tree

2 files changed

+3
-1
lines changed
  • lib/node_modules/@stdlib
    • constants/float32/max-safe-nth-fibonacci/lib
    • number/float32/base/exponent/lib

2 files changed

+3
-1
lines changed

lib/node_modules/@stdlib/constants/float32/max-safe-nth-fibonacci/lib/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141
* @see [Fibonacci number]{@link https://en.wikipedia.org/wiki/Fibonacci_number}
4242
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
4343
*/
44+
/* eslint-disable id-length */
4445
var FLOAT32_MAX_SAFE_NTH_FIBONACCI = 36|0; // asm type annotation
46+
/* eslint-enable id-length */
4547

4648

4749
// EXPORTS //

lib/node_modules/@stdlib/number/float32/base/exponent/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
* @module @stdlib/number/float32/base/exponent
2525
*
2626
* @example
27-
* var exponent = require( '@stdlib/number/float32/base/exponent' );
2827
* var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
28+
* var exponent = require( '@stdlib/number/float32/base/exponent' );
2929
*
3030
* var exp = exponent( toFloat32( 3.14e34 ) );
3131
* // returns 114 => 2**114 ~ 2.08e34

0 commit comments

Comments
 (0)