Skip to content

Commit 9ea47ad

Browse files
authored
refactor: remove unnecessary wrapping
Signed-off-by: Athan <kgryte@gmail.com>
1 parent fc3b9c3 commit 9ea47ad

File tree

1 file changed

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

1 file changed

+1
-6
lines changed

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@
2929
* // returns 88.72283935546875
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 88.72283935546875
5348
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
5449
*/
55-
var FLOAT32_MAX_LN = float64ToFloat32( 88.72283935546875 );
50+
var FLOAT32_MAX_LN = 88.72283935546875;
5651

5752

5853
// EXPORTS //

0 commit comments

Comments
 (0)