Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable */
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not acceptable. Please do not disable linting like this. We have linting enabled for a reason. Disabling wholesale increases the risk of bugs.


/**
* @license Apache-2.0
*
Expand All @@ -18,6 +20,7 @@

'use strict';


/**
* Maximum safe nth Fibonacci number when stored in single-precision floating-point format.
*
Expand All @@ -32,6 +35,7 @@

// MAIN //


/**
* The maximum safe nth Fibonacci number when stored in single-precision floating-point format.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* @module @stdlib/number/float32/base/exponent
*
* @example
* var exponent = require( '@stdlib/number/float32/base/exponent' );
* var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
* var exponent = require( '@stdlib/number/float32/base/exponent' );
*
* var exp = exponent( toFloat32( 3.14e34 ) );
* // returns 114 => 2**114 ~ 2.08e34
Expand Down