Skip to content

Commit ed49835

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 62a91f3 commit ed49835

File tree

1 file changed

+1
-6
lines changed
  • lib/node_modules/@stdlib/constants/float32/min-ln/lib

1 file changed

+1
-6
lines changed

lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@
2929
* // returns -87.3365478515625
3030
*/
3131

32-
// MODULES //
33-
34-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
35-
36-
3732
// MAIN //
3833

3934
/**
@@ -52,7 +47,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
5247
* @default -87.3365478515625
5348
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
5449
*/
55-
var FLOAT32_MIN_LN = float64ToFloat32( -87.3365478515625 );
50+
var FLOAT32_MIN_LN = -87.3365478515625;
5651

5752

5853
// EXPORTS //

0 commit comments

Comments
 (0)